import { NativeModule } from 'expo'; import type { FaceValidationOptions, NativeFaceValidationResult, NativeOcrResult, NativeRecognizeOptions } from './RnAfIdentityOcr.types'; declare class RnAfIdentityOcrModule extends NativeModule { recognizeAsync(_imageUri: string, _options: NativeRecognizeOptions): Promise; detectFaceAsync(_imageUri: string, _options?: FaceValidationOptions): Promise; } export default function getRnAfIdentityOcrModule(): typeof RnAfIdentityOcrModule; export {}; //# sourceMappingURL=RnAfIdentityOcrModule.web.d.ts.map