import { TextProps } from '../../Text'; import { ChipProps } from '../types'; export interface ChipLabelProps extends TextProps<'span'> { /** * Choose one size */ readonly aspectSize?: ChipProps['aspectSize']; /** * Choose the color variant */ readonly variant?: ChipProps['variant']; }