import type { Work } from '@realsee/five'; import type { ImageFormat, ImageProcessingFilename } from './type'; export declare function download(work: Work, options?: { log?: boolean; distPath?: string; fetch?: typeof fetch; imageOptions?: { size?: number[]; format?: ImageFormat[]; }; textureOptions?: { size?: number[]; format?: ImageFormat[]; }; imageProcessingFilename?: ImageProcessingFilename; }): Promise;