import { TinoeGLAImage } from '@tinoe/gla'; export interface ImageLoaderConfigType { crossOrigin?: string; } export declare class ImageLoader { static loadAll(urls: string[], options?: ImageLoaderConfigType): Promise; static load(url: string, options?: ImageLoaderConfigType): Promise; }