/// import NodeGroupItem from '../interface/NodeGroupItem'; interface ClickFunc { (node: NodeGroupItem): void; } interface Props { nodes: NodeGroupItem[]; itemWidth: number; itemHeight: number; selectedKey?: string; handleClickNode: ClickFunc; } export default function TimeNodeColumn({ nodes, itemWidth, itemHeight, selectedKey, handleClickNode, }: Props): JSX.Element; export {};