export declare const SIGNATURE_SCHEME_TO_FLAG: { readonly ED25519: 0; readonly Secp256k1: 1; readonly Secp256r1: 2; readonly MultiSig: 3; readonly Passkey: 6; /** @experimental */ readonly MoveAuthenticator: 7; }; export declare const SIGNATURE_SCHEME_TO_SIZE: { ED25519: number; Secp256k1: number; Secp256r1: number; }; export declare const SIGNATURE_FLAG_TO_SCHEME: { readonly 0: "ED25519"; readonly 1: "Secp256k1"; readonly 2: "Secp256r1"; readonly 3: "MultiSig"; readonly 6: "Passkey"; /** @experimental */ readonly 7: "MoveAuthenticator"; }; export type SignatureScheme = 'ED25519' | 'Secp256k1' | 'Secp256r1' | 'MultiSig' | 'Passkey' /** @experimental */ | 'MoveAuthenticator'; export type SignatureFlag = keyof typeof SIGNATURE_FLAG_TO_SCHEME; //# sourceMappingURL=signature-scheme.d.ts.map