import type { QSelectProps } from 'quasar'; export interface LInputSelectProps extends QSelectProps { required?: boolean; } type __VLS_Props = LInputSelectProps; type __VLS_ModelProps = { modelValue?: string | null; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_13: string, __VLS_14: any; type __VLS_Slots = {} & { [K in NonNullable]?: (props: typeof __VLS_14) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: string | null | undefined) => any; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string | null | undefined) => any) | undefined; }>, { dark: boolean | null; rounded: boolean; square: boolean; dense: boolean; outlined: boolean; filled: boolean; stackLabel: boolean; standout: string | boolean; hideBottomSpace: boolean; inputDebounce: string | number; optionsDark: boolean | null; }, {}, {}, {}, 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; }; };