export interface CascaderOption { value: string; label: string; children?: CascaderOption[]; disabled?: boolean; } interface CascaderProps { id?: string; options?: CascaderOption[]; value?: string[]; label?: string; placeholder?: string; disabled?: boolean; changeOnSelect?: boolean; class?: string; onchange?: (value: string[], labels: string[]) => void; } declare const Cascader: import("svelte").Component; type Cascader = ReturnType; export default Cascader;