interface IPoints { x: string | undefined; y: string | undefined; } /** * importPublicKey function - TODO: Add description * @param TODO - Add parameters * @returns TODO - Add return type description */ export declare function importPublicKey(points: IPoints): Promise; /** * Imports publickeyfrompem * @param key - The key parameter * @returns Promise that resolves to CryptoKey * @example * ```typescript * const result = await importPublicKeyFromPem("example"); * ``` */ export declare function importPublicKeyFromPem(key: string): Promise; export {}; //# sourceMappingURL=importPublicKey.d.ts.map