import { Environment } from '@usecapsule/core-sdk'; export declare function parseCredentialCreationRes(creds: any, algorithm: number): { cosePublicKey: string; clientDataJSON: string; aaguid: string; }; export declare function createCredential(env: Environment, userId: string, identifier: string, isE2E?: boolean): Promise<{ creds: any; userHandle: string; algorithm: number; }>; export declare function generateSignature(env: Environment, challenge: string, allowedPublicKeys: string[], isE2E?: boolean): Promise;