import { FilesPayload } from "./files-payload"; import { SdkCallbacks } from "./sdk-callbacks"; import { ConnectedDevices } from "./connected-devices"; import { Device } from "./device"; export declare class Config { largeFilesProtocol?: string; pubnubPublishKey: string; pubnubSubscribeKey: string; /** * Can be playground or cli */ msvKey: string; /** * Can be staging, uat or live */ msvEnv: string; callbacks: SdkCallbacks; getInitialFiles: (device?: Device) => Promise; instanceId?: string; connectedDevices?: ConnectedDevices; previewAppStoreId?: string; previewAppGooglePlayId?: string; }