import React, { CSSProperties } from "react";
type ChipProps = {
    className?: string | ((item: any) => string);
    item: any;
    color?: string | ((item: any) => string);
    size?: "sm" | "md" | "lg" | number;
    style?: CSSProperties | ((item: any) => CSSProperties);
};
/**
 * Improved Chip component that works without Tailwind
 * Uses direct CSS styles for colors and sizes
 */
declare const Chip: React.FC<ChipProps>;
export default Chip;
