import React from "react"; export interface FilterChipProps extends Omit, "children"> { /** * The text label displayed on the chip. */ children: React.ReactNode; /** * Whether the chip is currently in an active/selected state. */ active?: boolean; /** * Optional icon rendered before the label. */ icon?: React.ReactNode; /** * Size variant. * @default "medium" */ size?: "small" | "medium"; /** * Whether the chip is disabled. */ disabled?: boolean; } /** * A toggle chip used for filter presets and similar multi-select controls. * * Uses an inset box-shadow for the active ring instead of `border` so the * chip size stays stable across states and the ring cannot be clipped by * parent `overflow-hidden` containers. * * @group Interactive components */ export declare const FilterChip: React.ForwardRefExoticComponent>;