export interface FilterGroupProps { /** * The content to display inside the filter group */ children: React.ReactNode; /** * Additional CSS classes */ className?: string; /** * Whether to show a border around the group * @default true */ bordered?: boolean; /** * Spacing between filter sections * @default "lg" */ spacing?: 'sm' | 'md' | 'lg'; } export declare const FilterGroup: ({ children, className, bordered, spacing, }: FilterGroupProps) => import("react/jsx-runtime").JSX.Element;