import { ElementFactory } from "../Page/ElementsOfFormFactory/ElementFactory";
import { IMainStateFactory } from "../Types";
export declare class CheckBoxTreeFactory extends ElementFactory {
    #private;
    caption: string;
    disabled: boolean;
    readonly: boolean;
    showHasChangeFlag: boolean;
    dirLeftToRight: boolean;
    tabIndex?: number | undefined;
    forceUpdate: () => void;
    get value(): number;
    setValue: (value: number) => void;
    deseriallize: (e: any) => void;
    clearData: () => void;
    get defaultValue(): number;
    focusToElement: () => void;
    constructor(_mainStateFactory: IMainStateFactory, _fieldName: string, _dispose: () => void, caption: string, disabled: boolean, readonly: boolean, showHasChangeFlag: boolean, dirLeftToRight: boolean, tabIndex?: number | undefined, payLoadKey?: string, responseKey?: string);
    restartDefaultValue: () => void;
    refreshHasChange: () => void;
    validate: () => void;
    private validateNormal;
    isValueEmpty: () => boolean;
    isValueNotEmpty: () => boolean;
}
