import { AuthenticatorAssertionResponseJSON } from '@simplewebauthn/types'; import { Base64UrlString } from '../../../encapsulation/webauthn.utilities'; export declare class AuthenticatorAssertionResponse implements AuthenticatorAssertionResponseJSON { clientDataJSON: Base64UrlString; authenticatorData: Base64UrlString; signature: Base64UrlString; userHandle?: Base64UrlString; }