import { BiometricCredentials } from '../../../models';
/**
 * The response for finalizing a biometric registration.
 */
export declare class ConfirmBiometricRegistrationResponse {
    /**
     * All biometric credentials of the user, including the new one if registration was successful.
     */
    biometricCredentials: BiometricCredentials[];
    /**
     * Whether or not registration was successful.
     */
    verified: boolean;
}
