import { IValidator } from "./IComponentValidationEnabled";
export interface IFieldValidation {
    useValidator: IValidator;
    checkValue: any;
    rules: Array<(value: any) => boolean | string>;
    getCheckValue?: () => any;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-field-validation": IFieldValidation;
        }
    }
}
