/// <reference types="react" />
import { IListIF } from "../types";
declare const Children: React.FC<{
    item: IListIF;
    index: number;
    showLine: boolean;
}>;
export default Children;
