import type { ValidationRule } from '../../../composables/useValidation'; export interface FmFormGroupProps { modelValue: any; rules?: ValidationRule[]; blameHandler?: () => void; focused?: boolean; disabled?: boolean; label?: string; required?: boolean; optional?: boolean; info?: string; helperText?: string; helperState?: 'success' | 'warning' | 'error' | 'none'; /** If running into odd behaviors */ tag?: string; locale?: 'en' | 'cn'; } declare const _default: __VLS_WithTemplateSlots, { rules: () => never[]; focused: boolean; disabled: undefined; label: string; required: boolean; optional: boolean; info: string; helperText: string; helperState: string; tag: string; }>, { el: import("vue").Ref; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly, { rules: () => never[]; focused: boolean; disabled: undefined; label: string; required: boolean; optional: boolean; info: string; helperText: string; helperState: string; tag: string; }>>>, { required: boolean; label: string; disabled: boolean; optional: boolean; focused: boolean; rules: ValidationRule[]; helperText: string; helperState: "error" | "none" | "success" | "warning"; info: string; tag: string; }, {}>, { label?(_: {}): any; default?(_: { isPristine: import("vue").Ref; invalid: boolean; }): any; "helper-text"?(_: {}): any; "helper-append"?(_: {}): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };