export interface ChipSelectOption { id: string; label: string; disabled?: boolean; } interface ChipSelectProps { options?: ChipSelectOption[]; value?: string[]; label?: string; multiple?: boolean; class?: string; onchange?: (value: string[]) => void; } declare const ChipSelect: import("svelte").Component; type ChipSelect = ReturnType; export default ChipSelect;