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