import type { Face, StaticImageOptions } from '../types'; /** * Detect faces in a static image * * NOTE: Static image detection is currently not supported in the frame processor-only version. * This feature requires native module implementation. * For real-time face detection, use the `detectFaces` function with VisionCamera frame processor. * * @param options - Image source and detection options * @returns Promise resolving to array of detected faces * * @example * ```tsx * // This feature is not yet implemented * // For real-time detection, use: * import { detectFaces } from '@arfuhad/react-native-smart-camera'; * * const frameProcessor = useFrameProcessor((frame) => { * 'worklet'; * const faces = detectFaces(frame); * }, []); * ``` */ export declare function detectFacesInImage(options: StaticImageOptions): Promise; //# sourceMappingURL=staticImageDetector.d.ts.map