import { Sizes } from '../constants'; interface SelectOption { label: string; value: string | number; } interface Props { autocomplete?: string; defaultValue?: string; disabled?: boolean; errorMessage?: string; help?: string; hideDefaultValue?: boolean; isInvalid?: boolean; label?: string; name?: string; options: SelectOption[]; required?: boolean; size?: Sizes; tooltip?: string; } type __VLS_Props = Props; type __VLS_ModelProps = { modelValue?: string | number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string | number | undefined) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined; }>, { label: string; size: Sizes; required: boolean; name: string; disabled: boolean; isInvalid: boolean; tooltip: string; errorMessage: string; help: string; autocomplete: string; defaultValue: string; hideDefaultValue: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default; //# sourceMappingURL=CpSelect.vue.d.ts.map