import { type PropsWithChildren } from 'react'; import { CameraNativeProps, CameraCapturedPicture, CameraPictureOptions } from './Camera.types'; export interface ExponentCameraRef { getAvailablePictureSizes: (ratio: string) => Promise; takePicture: (options: CameraPictureOptions) => Promise; resumePreview: () => Promise; pausePreview: () => Promise; } declare const ExponentCamera: ({ facing, poster, ref, ...props }: PropsWithChildren) => import("react").JSX.Element; export default ExponentCamera; //# sourceMappingURL=ExpoCamera.web.d.ts.map