import type { ReactNode, JSX } from 'react'; import { Severity } from '../../constants/severity.types'; interface ChipProps { children: ReactNode; severity?: Severity; disableIcon?: boolean; customIcon?: ReactNode; loading?: boolean; fullWidth?: boolean; onClose?: () => void; size?: 'sm' | 'md' | 'lg'; type?: 'default' | 'rounded' | 'outlined'; selected?: boolean; } export declare function Chip({ children, severity, loading, disableIcon, fullWidth, size, customIcon, type, selected, onClose, }: ChipProps): JSX.Element; export {};