import { ElementType, FC, HTMLAttributes } from 'react'; export interface ChipLabelProps extends HTMLAttributes { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; /** Classi aggiuntive da usare per il componente ChipLabel */ className?: string; testId?: string; } export declare const ChipLabel: FC;