import * as React from 'react'; import { CameraCapturedPicture, CameraNativeProps, CameraPictureOptions } from './legacy/Camera.types'; export interface ExponentCameraRef { getAvailablePictureSizes: (ratio: string) => Promise; takePicture: (options: CameraPictureOptions) => Promise; resumePreview: () => Promise; pausePreview: () => Promise; } declare const ExponentCamera: React.ForwardRefExoticComponent & React.RefAttributes>; export default ExponentCamera; //# sourceMappingURL=ExpoCamera.web.d.ts.map