import type { PropType } from "vue"; export type SelectionChipTone = "neutral" | "success" | "warning" | "error" | "info"; export type SelectionChipProps = { /** Libellé de la dimension sélectionnée. */ label: string; /** Nombre d'éléments sélectionnés — affiché "(N)" si fourni et Number.isFinite. */ count?: number; tone?: SelectionChipTone; /** Callback effacement — affiche le bouton ✕ si fourni. */ onClear?: () => void; disabled?: boolean; class?: string; }; export declare const SelectionChip: import("vue").DefineComponent SelectionChipTone; default: string; }; onClear: { type: PropType<() => void>; default: undefined; }; disabled: { type: BooleanConstructor; default: boolean; }; class: { type: StringConstructor; default: undefined; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly SelectionChipTone; default: string; }; onClear: { type: PropType<() => void>; default: undefined; }; disabled: { type: BooleanConstructor; default: boolean; }; class: { type: StringConstructor; default: undefined; }; }>> & Readonly<{}>, { class: string; disabled: boolean; tone: SelectionChipTone; count: number; onClear: () => void; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; //# sourceMappingURL=SelectionChip.d.ts.map