import { VegaComponentInterface } from '../../types/ui.type'; /** * Size variants available for selection chips. * Ranges from extra-small to large for different UI contexts. */ export declare type VegaSelectionChipSize = 'extra-small' | 'small' | 'medium' | 'large'; /** * Visual variant styles for selection chips. * Can display as a color swatch or text-based chip. */ export declare type VegaSelectionChipVariant = 'swatch' | 'text'; /** * Props configuration for tooltip component used with selection chips. * Partial implementation of VegaComponentInterface for HTMLVegaTooltipElement. */ export declare type VegaSelectionChipTooltipProps = Partial>;