. */ declare(strict_types=1); namespace FireflyIII\Import\Mapper; /** * Interface MapperInterface * * @package FireflyIII\Import\Mapper */ interface MapperInterface { /** * @return array */ public function getMap(): array; }