import { KeyPair, Parameter } from "./../index";
export interface SignerAddInterface {
    keyPair: KeyPair;
}
export declare class SignerAdd implements SignerAddInterface, Parameter {
    keyPair: KeyPair;
    constructor(data: any);
    static getKeyPairDescription(): string;
    static fromJson(data: any): SignerAdd;
    toJson(): any;
    clone(): SignerAdd;
}
