import { type ChipSelectOption } from '../ChipSelect/ChipSelect.svelte'; interface FormChipSelectProps { name?: string; label?: string; options?: ChipSelectOption[]; value?: string[]; multiple?: boolean; helperText?: string; errorMessage?: string; disabled?: boolean; bindData?: boolean; class?: string; onchange?: (value: string[]) => void; } declare const FormChipSelect: import("svelte").Component; type FormChipSelect = ReturnType; export default FormChipSelect;