import type { Snippet } from 'svelte'; export interface FilterChip { id: string; label: string; } interface FilterBarProps { query?: string; filters?: FilterChip[]; placeholder?: string; /** Show search field (default true) */ searchable?: boolean; class?: string; actions?: Snippet; onquerychange?: (query: string) => void; onremovefilter?: (id: string) => void; onclear?: () => void; } declare const FilterBar: import("svelte").Component; type FilterBar = ReturnType; export default FilterBar;