/// <reference types="react" />
import { GanttStatusListProps, IListIF } from "../types";
declare const Parent: React.FC<{
    item: IListIF;
    index: number;
    showLine: boolean;
    statusList: GanttStatusListProps[];
    onClickText: (e: IListIF) => void;
}>;
export default Parent;
