import { Parameter } from "./../index";
export interface ConverterOfficeFormInterface {
    enabled?: boolean;
}
export declare class ConverterOfficeForm implements ConverterOfficeFormInterface, Parameter {
    enabled?: boolean;
    constructor(data: any);
    static getEnabledDefault(): boolean;
    static getEnabledDescription(): string;
    static fromJson(data: any): ConverterOfficeForm;
    toJson(): any;
    clone(): ConverterOfficeForm;
}
