import type { AuthenticationResponseJSON, PublicKeyCredentialCreationOptionsJSON, PublicKeyCredentialRequestOptionsJSON, RegistrationResponseJSON } from "@simplewebauthn/browser"; export type { AuthenticationResponseJSON, PublicKeyCredentialCreationOptionsJSON, PublicKeyCredentialRequestOptionsJSON, RegistrationResponseJSON, }; export declare function isPasskeySupported(): Promise; export declare function startPasskeyRegistration(options: PublicKeyCredentialCreationOptionsJSON): Promise; export declare function startPasskeyAuthentication(options: PublicKeyCredentialRequestOptionsJSON): Promise; export declare function mapPasskeyError(error: unknown): string;