import { default as React } from 'react'; interface IconProps { size?: string | number; color?: string; } export interface ChipProps { children: React.ReactNode; color?: string; textColor?: string; className?: string; /** Optional leading icon. Sized and coloured to match the chip text. */ icon?: React.ReactElement; /** `large` is a taller, more-padded badge that suits a leading icon. */ size?: 'default' | 'large'; } export declare function Chip({ children, color, textColor, className, icon, size }: ChipProps): import("react/jsx-runtime").JSX.Element; export {};