/** * index */ export declare const generateKey: (namedCurve?: import("./typedef").CurveTypes) => Promise; export declare const sign: (msg: Uint8Array, privateJwk: JsonWebKey, hash?: import("./typedef").HashTypes, signatureFormat?: import("./typedef").SignatureFormat) => Promise; export declare const verify: (msg: Uint8Array, signature: Uint8Array, publicJwk: JsonWebKey, hash?: import("./typedef").HashTypes, signatureFormat?: import("./typedef").SignatureFormat) => Promise; export declare const deriveSecret: (publicJwk: JsonWebKey, privateJwk: JsonWebKey) => Promise; declare const _default: { generateKey: (namedCurve?: import("./typedef").CurveTypes) => Promise; sign: (msg: Uint8Array, privateJwk: JsonWebKey, hash?: import("./typedef").HashTypes, signatureFormat?: import("./typedef").SignatureFormat) => Promise; verify: (msg: Uint8Array, signature: Uint8Array, publicJwk: JsonWebKey, hash?: import("./typedef").HashTypes, signatureFormat?: import("./typedef").SignatureFormat) => Promise; deriveSecret: (publicJwk: JsonWebKey, privateJwk: JsonWebKey) => Promise; }; export default _default;