import type { OpenPgpLib } from '../../interfaces/OpenPgpLib.mjs'; /** * Node.js implementation of OpenPGP library wrapper */ export declare class NodeOpenPgpLib implements OpenPgpLib { private openPgpModule; /** * Gets the OpenPGP module, loading it if necessary * @returns Promise that resolves to the OpenPGP module */ private getOpenPgpModule; /** * @inheritdoc */ encrypt(data: string, password: string): Promise; /** * @inheritdoc */ decrypt(data: string, password: string): Promise; }