import { CameraCapturedPicture, CameraPictureOptions } from './Camera.types'; import ExponentCamera from './ExponentCamera.web'; declare const _default: { readonly name: string; readonly Type: { back: string; front: string; }; readonly FlashMode: { on: string; off: string; auto: string; torch: string; }; readonly AutoFocus: { on: string; off: string; auto: string; singleShot: string; }; readonly WhiteBalance: { auto: string; continuous: string; manual: string; }; readonly VideoQuality: {}; isAvailableAsync(): Promise; takePicture(options: CameraPictureOptions, camera: ExponentCamera): Promise; pausePreview(camera: ExponentCamera): Promise; resumePreview(camera: ExponentCamera): Promise; getAvailableCameraTypesAsync(camera: ExponentCamera): Promise; getAvailablePictureSizes(ratio: string, camera: ExponentCamera): Promise; }; export default _default;