export interface FilterChipProps { /** * The label to display on the chip * @example "Electronics" */ label: string; /** * Callback function when the remove button is clicked */ onRemove?: () => void; /** * Whether the chip is removable * @default true */ removable?: boolean; /** * Additional CSS classes */ className?: string; /** * Size variant of the chip * @default "sm" */ size?: 'sm' | 'md'; } export declare const FilterChip: ({ label, onRemove, removable, className, size, }: FilterChipProps) => import("react/jsx-runtime").JSX.Element;