export declare const CHIP_TYPES: readonly ["filter", "input"]; export declare const CHIP_SIZES: readonly ["sm", "md"]; export declare const CHIP_SELECTION_MODES: readonly ["mono", "multi"]; export type ChipType = (typeof CHIP_TYPES)[number]; export type ChipSize = (typeof CHIP_SIZES)[number]; /** * Selection behaviour for `type="filter"`: * - `mono` — single-choice (radio-like); the selected chip just flips colour. * - `multi` — multi-choice (checkbox-like); a leading ✓ appears when selected. */ export type ChipSelectionMode = (typeof CHIP_SELECTION_MODES)[number]; export interface ChipSelectEventDetail { selected: boolean; }