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. * * Reads as a text tab: no fill at rest, the alpha highlight when active. It * shares no grammar with the tinted enum {@link Chip}, which carries a hue. * * @group Interactive components */ export declare const FilterChip: React.ForwardRefExoticComponent>;