export type ExpandIconProps = {
    nodeId: string;
    toggleExpand: (nodeId: string, e: any) => void;
    expandAllChildren?: (nodeId: string) => void;
    collapseAllChildren?: (nodeId: string) => void;
    forCollapedIcon?: boolean;
};
export declare const ExpandIcon: (props: ExpandIconProps) => import("react/jsx-runtime").JSX.Element;
