import { WebserviceException, Parameter, InfoInterface, InfoFormField, Info } from "./../index";
export interface InfoFormInterface extends InfoInterface {
    acroFormFields?: Array<InfoFormField>;
    error?: WebserviceException;
    value?: string;
}
export declare class InfoForm extends Info implements InfoFormInterface, Parameter {
    acroFormFields?: Array<InfoFormField>;
    error?: WebserviceException;
    value?: string;
    constructor(data: any);
    static getAcroFormFieldsDefault(): Array<InfoFormField>;
    static getAcroFormFieldsDescription(): string;
    static getErrorDescription(): string;
    static getValueDescription(): string;
    static fromJson(data: any): InfoForm;
    toJson(): any;
    clone(): InfoForm;
}
