import { ReactNode } from 'react'; export type ChipIndicatorProps = { /** * Component contents */ children?: ReactNode; size?: 'small' | 'medium'; state?: 'primary' | 'neutral' | 'error' | 'info' | 'warning' | 'success'; className?: string; testId?: string; }; export declare const ChipIndicator: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=ChipIndicator.d.ts.map