import { InfoFormXfaMatch, Parameter } from "./../index";
export interface InfoFormXfaFieldInterface {
    match?: InfoFormXfaMatch;
    name?: string;
}
export declare class InfoFormXfaField implements InfoFormXfaFieldInterface, Parameter {
    match?: InfoFormXfaMatch;
    name?: string;
    constructor(data: any);
    static getMatchDefault(): InfoFormXfaMatch;
    static getMatchDescription(): string;
    static getNameDefault(): string;
    static getNameDescription(): string;
    static fromJson(data: any): InfoFormXfaField;
    toJson(): any;
    clone(): InfoFormXfaField;
}
