import { EnterprisePropertyEditProps } from "../../EnterprisePropertyComponentProps";
import { TsxAllowUnknowProperties } from "../../..";
import { EnterprisePropertyRichTextItemSettings } from "../../../../models";
export interface IRichTextFieldEdit extends EnterprisePropertyEditProps<EnterprisePropertyRichTextItemSettings> {
    dark?: boolean;
    box?: boolean;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-enterpriseproperties-richtextfield-edit": TsxAllowUnknowProperties<IRichTextFieldEdit>;
        }
    }
}
