/** * Visual style variants for a chip component. */ export type VegaChipVariant = 'filled-background' | 'outlined'; /** * Available size options for the chip component. */ export type VegaChipSize = 'extra-small' | 'small' | 'default' | 'large'; /** * Determines whether the chip displays a status indicator or a label. */ export type VegaChipType = 'status' | 'label'; /** * Position of the icon inside a chip relative to the text. */ export type VegaChipIconAlign = 'left' | 'right';