/** * Exports publickey * @param key - The key parameter * @returns Promise that resolves to string * @example * ```typescript * const result = await exportPublicKey(keyValue); * ``` */ export declare function exportPublicKey(key: CryptoKey): Promise; /** * Exports publickeyaspem * @param key - The key parameter * @returns Promise that resolves to string * @example * ```typescript * const result = await exportPublicKeyAsPem(keyValue); * ``` */ export declare function exportPublicKeyAsPem(key: CryptoKey): Promise; //# sourceMappingURL=exportPublicKey.d.ts.map