import { FC } from 'react'; export interface IndentGroupLineProps { /** * 层级 */ level: number; /** * 动作节点数据 */ node: any; /** * 是否为最后一个节点 */ isLast: boolean; /** * 是否为第一个节点 */ isFirst: boolean; /** * 当前else节点的对应的 condition 节点是否为最后一个节点 */ elseFatherIsLast: boolean; /** * 父级列表 */ fatherList: any[]; } /** * 层级缩进 线 连接线效果 * @param props IndentGroupLineProps * @returns */ declare const IndentGroupLine: FC; export default IndentGroupLine;