import React from 'react'; import type { ViewProps } from 'react-native'; import type { Camera, PhotoFile, VideoFile } from 'react-native-vision-camera'; import type { OnOffType } from './interface'; import { MessageTypes } from '../../interfaces'; interface Props extends ViewProps { camera: React.RefObject; onMediaCaptured: (media: PhotoFile | VideoFile, type: MessageTypes) => void; flash: OnOffType; isPhoto: boolean; onStartRecording: () => void; onStopRecording: () => void; } export declare const CaptureCameraButton: React.NamedExoticComponent; export {}; //# sourceMappingURL=CaptureButton.d.ts.map