interface PasskeyArgs { apiKey: string; publicKey: Uint8Array; } export declare class Passkey { private _httpClient; private _publicKey; constructor(args: PasskeyArgs); get publicKey(): Uint8Array; signRecoveryChallenge(expectedChallenge: string): Promise; } export {};