import { CustomizableOptions } from '../../composables/useCustomizableOptions'; type __VLS_Props = CustomizableOptions & { label: string; value?: string | number; action?: string; placeholder?: string; chip?: boolean; icon?: string; row?: boolean; /** * @deprecated Utiliser le slot "value" pour rendre du HTML dans le template parent. */ renderHtmlValue?: boolean; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { icon?(_: {}): any; value?(_: { itemValue: string; }): any; action?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "click:action": (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onClick:action"?: ((...args: any[]) => any) | undefined; }>, { label: string; icon: string; placeholder: string; value: string | number; chip: boolean; action: string; row: boolean; renderHtmlValue: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };