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