import { AuthenticatorAttestationResponseJSON, AuthenticatorTransportFuture } from '@simplewebauthn/types'; import { Base64UrlString } from '../../../encapsulation/webauthn.utilities'; export declare class AuthenticatorAttestationResponse implements AuthenticatorAttestationResponseJSON { clientDataJSON: Base64UrlString; attestationObject: Base64UrlString; authenticatorData?: Base64UrlString; transports?: AuthenticatorTransportFuture[]; publicKeyAlgorithm?: number; publicKey?: Base64UrlString; }