* @link https://www.oxidmodule.com */ declare(strict_types=1); namespace D3\DataWizard\Application\Model\ExportRenderer; interface RendererInterface { /** * @param $rows * @param $fieldNames * * @return string */ public function getContent($rows, $fieldNames): string; /** * @return string */ public function getFileExtension(): string; /** * @return string */ public function getTitleTranslationId(): string; }