import { type OptionsType, type ValidationStatus } from './types'; import type { CommonAutoFill, InputSize } from './../FwbInput/types'; interface InputProps { modelValue?: string; label?: string; options?: OptionsType[]; placeholder?: string; disabled?: boolean; required?: boolean; underline?: boolean; size?: InputSize; autocomplete?: CommonAutoFill; validationStatus?: ValidationStatus; } declare var __VLS_1: {}, __VLS_3: {}; type __VLS_Slots = {} & { validationMessage?: (props: typeof __VLS_1) => any; } & { helper?: (props: typeof __VLS_3) => any; }; declare const __VLS_base: import("vue").DefineComponent void; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }>, { label: string; autocomplete: CommonAutoFill; disabled: boolean; required: boolean; size: InputSize; validationStatus: ValidationStatus; modelValue: string; options: OptionsType[]; placeholder: string; underline: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };