import { AssetsBatch } from './assets-batch'; export declare class Assets { private _store; font(name: string): string | undefined; image(name: string): HTMLImageElement | undefined; audio(name: string): HTMLAudioElement | undefined; json(name: string): T | undefined; asset(name: string): HTMLImageElement | HTMLAudioElement | string | T | undefined; fetch(batch: AssetsBatch): void; }