///
import { FlexProps } from '../../Flex';
import { ChipProps } from '../types';
export type ChipOverlayProps = FlexProps & {
/**
* Choose one size
*/
readonly aspectSize?: ChipProps['aspectSize'];
/**
* Set to show always the overlay
*/
readonly isAlwaysVisible?: ChipProps['isOverlayAlwaysVisible'];
/**
* Choose the color variant
*/
readonly variant?: ChipProps['variant'];
};