interface Props { height: number; isOpen: boolean; title: string; treeNodeId: string; tableType?: "excluded" | "normal"; onClick?: (treeNodeId: string) => void; } export default function SectionRow({ height, title, treeNodeId, isOpen, onClick, tableType, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};