export declare type Texture = any; export declare class GameLoader { private loader; constructor(); addAll(uris: Record): GameLoader; addOne(name: string, uri?: string): GameLoader; load(): Promise>; getTextures(): Record; getTextureByUri(name: string): Texture; }