import { INode } from './INode';
export interface INodeProps {
    depth: number;
    node: INode;
    index: number;
    parentId: string;
}
