import { EnterprisePropertyBooleanItemSettings } from "../../../../models";
import { EnterprisePropertyEditProps } from "../../EnterprisePropertyComponentProps";
export interface IBooleanFieldEdit extends EnterprisePropertyEditProps<EnterprisePropertyBooleanItemSettings> {
    indeterminate?: boolean;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-enterpriseproperties-booleanfield-edit": IBooleanFieldEdit;
        }
    }
}
