import type { COSEPrivateKey, COSEPublicKey, COSESymmetricKey } from "./types.js"; import type { COSEKeyAll } from "./index.js"; export interface ImportedKey { key: CryptoKey; kid?: Uint8Array; } export declare function exportPrivateKey(key: CryptoKey, kid?: Uint8Array): Promise; export declare function importPrivateKey(key: COSEKeyAll, extractable?: boolean): Promise; export declare function exportPublicKey(key: CryptoKey, kid?: Uint8Array): Promise; export declare function importPublicKey(key: COSEKeyAll): Promise; export declare function exportSymmetricKey(key: CryptoKey, kid?: Uint8Array): Promise; export declare function importSymmetricKey(key: COSEKeyAll, extractable?: boolean): Promise; //# sourceMappingURL=keys.d.ts.map