/**
 * This is a manager of assets.
 */
export declare class AssetManager {
    getAsset: (fileName: string) => Promise<File>;
    getLocalAsset: (fileName: string) => Promise<File | File[]>;
    fetch: (url: string) => Promise<any>;
}
