/** Saved-views-lite: a pill row that filters a list by one dimension. */ export interface ChipDef { key: string; label: string; count?: number } export function FilterChips(props: { chips: ChipDef[] active: string onChange: (key: string) => void }) { return (