import { AuthenticatorAttachment, RegistrationResponseJSON } from '@simplewebauthn/types'; import { AuthenticationExtensionsOutputs } from './authentication-extensions-outputs.model'; import { AuthenticatorAttestationResponse } from './authenticator-attestation-response.model'; import { Base64UrlString } from '../../../encapsulation/webauthn.utilities'; export declare class BiometricRegistrationResponse implements RegistrationResponseJSON { id: Base64UrlString; rawId: Base64UrlString; response: AuthenticatorAttestationResponse; authenticatorAttachment?: AuthenticatorAttachment; clientExtensionResults: AuthenticationExtensionsOutputs; type: PublicKeyCredentialType; }