import * as React from "react"; export interface FilterButtonProps extends Omit, "children" | "onClick"> { /** Whether the filter is active */ active?: boolean; /** Filter label text (optional - if not provided, shows only icon) */ label?: string; /** Number of active filters (shows badge) */ count?: number; /** Click handler */ onClick?: (event: React.MouseEvent) => void; /** Custom className */ className?: string; /** Whether to show filled icon when active */ showFilledIcon?: boolean; } /** * FilterButton component matching iCaptur Figma design * * A specialized button for filter functionality with: * - Filter icon * - Optional label * - Optional count badge * - Active state styling * - Hover and focus states * * @example * ```tsx * * * * ``` */ export declare const FilterButton: React.ForwardRefExoticComponent>; //# sourceMappingURL=filter-button.d.ts.map