/** * A class to check the browser's WebAuthn support. * * @hideconstructor * @category SDK * @subcategory Utilities */ declare class WebauthnSupport { /** * Does a simple check to test for the credential management API functions we need, and an indication of * public key credential authentication support. * * @see https://developers.google.com/web/updates/2018/03/webauthn-credential-management * @return boolean */ static supported(): boolean; /** * Checks whether a user-verifying platform authenticator is available. * * @return Promise */ static isPlatformAuthenticatorAvailable(): Promise; /** * Checks whether external CTAP2 security keys are supported. * * @return Promise */ static isSecurityKeySupported(): Promise; /** * Checks whether autofill assisted requests are supported. * * @return Promise */ static isConditionalMediationAvailable(): Promise; } export { WebauthnSupport };