import { AssetDefinition } from '..'; type LoaderResource = any; declare module 'pixi.js' { interface Texture { id: string; } } export declare class GameAssets { private static resources; static getAsset(name: string): LoaderResource; static loadGameAssets(assetDefinitions: AssetDefinition[] | ReadonlyArray>): Promise; } export {};