/**
 * Module defining functions for Public & Private keys generation.
 * @module crypto/RSAKeysGeneration
 */
/**
 * Generating rsa public and private keys.
 * @returns {{ publicKey: string; privateKey: string }}
 */
declare const generateKeys: () => {
    publicKey: string;
    privateKey: string;
};
export { generateKeys };
