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