type Options = { /** * If biometrics is not available, use device credentials */ allowDeviceCredentials: boolean; }; declare const RNBiometrics: { requestBioAuth: (promptTitle: string, promptMessage: string, options?: Options) => Promise; canAuthenticate: (options?: Options) => Promise; }; export default RNBiometrics; //# sourceMappingURL=index.d.ts.map