import type { HTMLProps } from 'react';
export type TChipColor = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'information';
export type TChipSize = 'sm' | 'md' | 'lg';
export type TChipVariant = 'solid' | 'soft' | 'outline';
export type TChipProps = {
/** Set the Chip's color */
color?: TChipColor;
/** Set the Chip to have hover-animation */
hoverable?: boolean;
/** Set the Chip's size */
size?: TChipSize;
/** Set the Chip's variant */
variant?: TChipVariant;
} & Omit, 'size'>;