import { Transformable } from '../utils/Transformable'; import { AssetsMap } from '../AssetsMap'; import type { AppPlugin } from '../Plugin'; declare module '../Def' { interface AppPluginOptions { assetsMap?: Transformable; preferCORS?: PreferCORS; ignoreAsset?: IgnoreAsset; } } export declare function createLoadFromAssetsMapPlugin(): AppPlugin;