/**
 * Props for the SelectInput component.
 * @prop {string} modelValue - The model value of the select input. Default is undefined.
 * @prop {boolean} small - The small state of the select input. Default is false.
 */
interface SelectInputProps {
    modelValue: string | undefined | number;
    small?: boolean;
    disabled?: boolean;
}
declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: {
        default?(_: {}): any;
    };
    refs: {};
    rootEl: HTMLSelectElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import("vue").DefineComponent<SelectInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    "update:modelValue": (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<SelectInputProps> & Readonly<{
    "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {
    small: boolean;
    disabled: boolean;
    modelValue: string | undefined | number;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLSelectElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
