import { Icon } from 'itlab-icons'; import { CurrentTheme } from 'itlab-theme-system'; type __VLS_Props = { icon?: Icon; disabled?: boolean; placeholder?: number | string; ignoreClick?: boolean; hideExpander?: boolean; years?: number[]; inputYear?: boolean; theme?: CurrentTheme; }; type __VLS_ModelProps = { 'visible'?: boolean; modelValue?: number | undefined; 'modelModifiers'?: Partial>; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, Readonly, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: number | undefined) => any; "update:visible": (value: boolean | undefined) => any; } & { click: (data: MouseEvent) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onClick?: ((data: MouseEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined; "onUpdate:visible"?: ((value: boolean | undefined) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;