import { BiometricAuthBase } from './base.js'; import type { AuthenticateOptions, CheckBiometryResult } from './definitions.js'; import { BiometryType } from './definitions.js'; export declare class BiometricAuthWeb extends BiometricAuthBase { private biometryType; private biometryTypes; private biometryIsEnrolled; private deviceIsSecure; checkBiometry(): Promise; private hasStrongBiometry; internalAuthenticate(options?: AuthenticateOptions): Promise; setBiometryType(type: BiometryType | string | Array | undefined): Promise; setBiometryIsEnrolled(enrolled: boolean): Promise; setDeviceIsSecure(isSecure: boolean): Promise; }