import { RootProps } from './chip'; import { IndicatorProps } from './chip-indicator'; import { ItemProps } from './chip-item'; export declare const Chip: import('react').ForwardRefExoticComponent> & { Item: import('react').ForwardRefExoticComponent>; Indicator: import('react').ForwardRefExoticComponent & { name: import('..').IconName; size?: "xs" | "sm" | "md" | "lg" | "font" | "xxs" | "xl"; title?: string; children?: React.ReactNode; }, "ref">> & import('react').RefAttributes>; }; export type ChipProps = { Root: RootProps; Item: ItemProps; Indicator: IndicatorProps; };