* SPDX-License-Identifier: MIT */ declare(strict_types=1); namespace Respect\Validation\Message; use Respect\Validation\Result; interface Renderer { public function render(Result $result, Translator $translator): string; }