import { type TurboModule } from 'react-native'; export interface RdServiceResponse { /** "SUCCESS" or "FAILURE" */ status: string; /** Signed XML from the RD service on success, human-readable error on failure */ message: string; } export interface Spec extends TurboModule { getDeviceInfo(deviceName: string): Promise; getFingerPrint(deviceName: string, pidOption: string): Promise; getIrisCapture(deviceName: string, pidOption: string): Promise; getFaceCapture(deviceName: string, pidOption: string): Promise; } declare const _default: Spec; export default _default; //# sourceMappingURL=NativeRdservice.d.ts.map