export interface BiometricPinService { storePinWithBiometric: (pin: string) => Promise; retrievePinWithBiometric: () => Promise; isPinStored: () => Promise; removePinFromStorage: () => Promise; isBiometricAvailable: () => Promise; } /** * Check if biometric authentication is available on the device */ export declare const isBiometricAvailable: () => Promise; /** * Store PIN with biometric authentication */ export declare const storePinWithBiometric: (pin: string) => Promise; /** * Retrieve PIN with biometric authentication */ export declare const retrievePinWithBiometric: () => Promise; /** * Check if PIN is stored in secure storage */ export declare const isPinStored: () => Promise; /** * Remove PIN from secure storage */ export declare const removePinFromStorage: () => Promise; export declare const biometricPinService: BiometricPinService; //# sourceMappingURL=biometricPinService.d.ts.map