import { BinaryImageRef, FileApi, FileInitData, FileRef, LocalFile } from './FileApiProvider'; export declare class GatewayFileApi implements FileApi { private fileApis; constructor(...fileApis: FileApi[]); init(data: FileInitData): void; reset(ref?: FileRef): void; isAvailable(): Promise; getDisplayUri(ref: FileRef): Promise; getBinaryImageUri(ref: BinaryImageRef): Promise; getLocalCopy(ref: FileRef): Promise; openInExternalApp(ref: FileRef): Promise; saveToDevice(ref: FileRef): Promise; }