export interface FilterSectionProps { /** * The title of the filter section * @example "Categories" */ title: string; /** * The content to display inside the filter section */ children: React.ReactNode; /** * Whether the section is collapsible * @default true */ collapsible?: boolean; /** * Whether the section is initially expanded * @default true */ defaultExpanded?: boolean; /** * Additional CSS classes */ className?: string; /** * Optional badge content to show next to the title (e.g., count) */ badge?: React.ReactNode; } export declare const FilterSection: ({ title, children, collapsible, defaultExpanded, className, badge, }: FilterSectionProps) => import("react/jsx-runtime").JSX.Element;