import { ModelComponent } from "../ModelComponent";
export declare class ViolationSettings extends ModelComponent {
    constructor(defaultValue?: boolean);
    allowSafetyLines: boolean;
    allowRegion: boolean;
    allowBleedArea: boolean;
    clone(targetObject?: ViolationSettings): ViolationSettings;
    equals(p: ViolationSettings): boolean;
    static type: string;
    type: string;
}
