import { type Frame } from 'react-native-vision-camera'; import type { Face, FrameProcessorOptions } from '../types'; /** * Detect faces in a camera frame * * @param frame - The camera frame from VisionCamera * @param options - Face detection options * @returns Array of detected faces */ export declare function detectFaces(frame: Frame, options?: Partial): Face[]; /** * Check if the face detector plugin is available * @returns true if the plugin is registered and available */ export declare function isFaceDetectorAvailable(): boolean; //# sourceMappingURL=faceDetector.d.ts.map