/// <reference types="node" />
import { KeyLike, RsaPrivateKey, RsaPublicKey } from 'crypto';
export interface BolttechCryptoServiceInterface {
    encryptStringWithRsaPublicKey(toEncrypt: unknown, publicKey: RsaPublicKey | KeyLike): string;
    decryptStringWithRsaPrivateKey(toDecrypt: string, privateKey: RsaPrivateKey | KeyLike): string;
}
