import React from 'react';
export interface ChipProps {
    label: string;
    backgroundColor?: string;
    textColor?: string;
    borderColor?: string;
    className?: string;
    variant?: 'rounded' | 'pill';
    size?: 'small' | 'medium' | 'large';
    fontSize?: 'small' | 'medium' | 'large';
    width?: 'small' | 'medium' | 'large' | 'auto';
}
declare const Chip: React.FC<ChipProps>;
export default Chip;
