/** * Prefix MARK to asset path */ declare function prefixAssets(assets: { [key: string]: string; }, cwd: string): { [key: string]: string; }; /** * Replace strings starting with the MARK to `require` call */ declare function requireAssets(str: string): string; export { prefixAssets, requireAssets };