import type { ComponentType } from '../../jsx'; import type { BaseStructureProps } from './types'; export interface CompareHierarchyLeftRightProps extends BaseStructureProps { /** 同侧数据项上下间隔 */ gap?: number; /** 左右两侧间隔 */ groupGap?: number; /** 子节点是否环绕根节点 */ surround?: boolean; /** 数据项指示器样式 */ decoration?: 'none' | 'dot-line' | 'arc-dot' | 'split-line'; /** 是否翻转根节点 */ flipRoot?: boolean; /** 是否翻转叶子节点 */ flipLeaf?: boolean; } export declare const CompareHierarchyLeftRight: ComponentType;