import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue'; type InputVariant = 'default' | 'rounded' | 'none'; type InputSize = 'small' | 'large'; type InputProps = { modelValue?: string; hasError?: boolean; rounded?: boolean; size?: InputSize; icon?: string; variant?: InputVariant; }; declare const _default: __VLS_WithTemplateSlots, { variant: string; rounded: boolean; size: string; }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (payload: string) => void; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, { variant: string; rounded: boolean; size: string; }>>> & { "onUpdate:modelValue"?: ((payload: string) => any) | undefined; }, { size: InputSize; variant: InputVariant; rounded: boolean; }, {}>, { leading?(_: {}): any; trailing?(_: {}): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: 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; }; };