import * as React from 'react'; import { FaceDetectionViewProps } from './ExpoFaceDetection.types'; /** * Native camera view for real-time face detection and matching. * * This component renders a camera preview with face detection overlay. * Frames are processed natively without crossing the JS bridge. * * @example * ```tsx * // Matching mode * { * if (nativeEvent.isMatch) { * console.log('Face matched!'); * } * }} * style={{ flex: 1 }} * /> * * // Enrollment mode * { * console.log(nativeEvent.instruction); * }} * onEnrollmentCapture={({ nativeEvent }) => { * console.log(`Photo ${nativeEvent.photoIndex + 1} captured`); * }} * onEnrollmentComplete={({ nativeEvent }) => { * if (nativeEvent.success) { * saveEmbedding(nativeEvent.embedding); * } * }} * style={{ flex: 1 }} * /> * ``` */ export declare function FaceDetectionCameraView(props: FaceDetectionViewProps): React.JSX.Element; //# sourceMappingURL=ExpoFaceDetectionView.d.ts.map