import { FC } from "react"; export interface processProps { color?: string; value?: number; } export interface ItemCompProps { className?: string; left?: any; center?: any; right?: any; leftClassName?: string; centerClassName?: string; rightClassName?: string; process?: processProps; } declare const ItemComp: FC; export default ItemComp;