export type FilterChipColor = "neutral" | "primary" | "secondary" | "info" | "success" | "warning" | "danger" | "light" | "dark";
export type FilterChipRounded = "sm" | "md" | "lg" | "full";
export type FilterChipProps = {
    id: string;
    leftLabel: string;
    valueLabel: string;
    onRemove?: (id: string) => void;
    color?: FilterChipColor;
    rounded?: FilterChipRounded;
    className?: string;
};
declare const FilterChip: React.FC<FilterChipProps>;
export default FilterChip;
