export interface FacetOption { id: string; label: string; count?: number; disabled?: boolean; } interface FacetGroupProps { /** Facet field id (e.g. brand) */ id?: string; title: string; options?: FacetOption[]; value?: string[]; multiple?: boolean; /** Visible options before "Show more" */ limit?: number; showMoreLabel?: string; showLessLabel?: string; class?: string; onchange?: (value: string[]) => void; } declare const FacetGroup: import("svelte").Component; type FacetGroup = ReturnType; export default FacetGroup;