import { ShapeViolationSettings } from "./ShapeViolationSettings";
export declare class TextViolationSettings extends ShapeViolationSettings {
    constructor(defaultValue?: boolean);
    allowTextCrop: boolean;
    allowInPlaceText: boolean;
    clone(): TextViolationSettings;
    equals(p: TextViolationSettings): boolean;
    static type: string;
    type: string;
}
