import { LoadResultType } from "./shared"; import { Fetcher } from "../../utils/ajax"; import { TextureOptions } from "../../types/imageOptions"; export declare function loadDomez(url: string, options?: { upAxis?: 'Y' | 'Z'; light?: boolean; textureOptions?: TextureOptions; textureBaseUri?: string; fetcher?: Fetcher; onDownloadProgress?: (percent: number, loaded?: number, total?: number) => void; }): Promise;