import { Key } from "./key";
export declare class KeyPair {
    privateKey: Key;
    publicKey: Key;
    constructor({ publicKey, privateKey }: {
        publicKey: Buffer;
        privateKey: Buffer;
    });
    static fromJson(params: string): KeyPair;
    toJson(): string;
}
