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