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