export interface FmFieldProps { tag?: string; prependIcon?: string; appendIcon?: string; invalid?: boolean; showValidBorder?: boolean; disabled?: boolean; focused?: boolean; iconOutlined?: boolean; size?: 'sm' | 'md'; tooltip?: string; } declare const _default: __VLS_WithTemplateSlots, { tag: string; prependIcon: string; appendIcon: string; invalid: boolean; showValidBorder: boolean; disabled: undefined; focused: boolean; iconOutlined: boolean; size: string; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly, { tag: string; prependIcon: string; appendIcon: string; invalid: boolean; showValidBorder: boolean; disabled: undefined; focused: boolean; iconOutlined: boolean; size: string; }>>>, { invalid: boolean; size: "sm" | "md"; disabled: boolean; focused: boolean; tag: string; prependIcon: string; appendIcon: string; showValidBorder: boolean; iconOutlined: boolean; }, {}>, { prepend?(_: {}): any; default?(_: {}): any; 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; }; };