* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Export\Data; /** * Interface ExportableDataInterface. */ interface ExportableDataInterface { /** * Titles data. * * @return string[] */ public function getTitles(); /** * Rows data. * * @return array[] */ public function getRows(); }