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