import type { FilterOption } from './types.js'; export interface Props { /** Available filter options */ options: FilterOption[]; /** Currently selected value */ selected: string; /** Called when selection changes */ onchange?: (value: string) => void; /** Size variant */ size?: 'sm' | 'md'; /** Show "All" option */ showAll?: boolean; /** All option label */ allLabel?: string; } declare const FilterChips: import("svelte").Component; type FilterChips = ReturnType; export default FilterChips; //# sourceMappingURL=FilterChips.svelte.d.ts.map