/** * Interface for asset exporter plugin */ declare type AssetExportMapEntity = { localSrcPath: string; localDestPath: string; url: string; }; export default AssetExportMapEntity;