import { IWebComponentInstance } from "../../"; import { IFieldValidation } from "./IFieldValidation"; import { VueComponentBase } from "../VueComponentBase"; export declare class FieldValidation extends VueComponentBase implements IWebComponentInstance, IFieldValidation { checkValue: any; rules: Array<(value: any) => boolean | string>; getCheckValue: () => any; private defaultValidationMsgs; private isShowingValidation; onVisibleChanges(newValue: any, oldValue: any): void; mounted(): void; clearValidation(): void; validate(): boolean; render(): VueTsxSupport.JSX.Element; }