/** Biometry detection data. */
export interface BiometryInfo {
    /** Status of the biometry config on the device. */
    readonly biometricStatus: BiometricStatus;
    /** Status of the biometry config on the device, raw value obtained from `androidx.biometric.BiometricManager`. */
    readonly androidxLibStatus: number;
}
/** Status of biometry on the device. */
export declare enum BiometricStatus {
    CONFIGURED = "CONFIGURED",
    UNKNOWN = "UNKNOWN",
    UNSUPPORTED = "UNSUPPORTED",
    CURRENTLY_UNAVAILABLE = "CURRENTLY_UNAVAILABLE",
    NONE_ENROLLED = "NONE_ENROLLED"
}
//# sourceMappingURL=BiometryInfo.d.ts.map