/// export type TopbarSessionMenuSectionProps = { showEditButton?: boolean; title?: string; editLink?: string; onEditClick?: () => void; editTooltipTitle?: string; children?: React.ReactNode; icon?: React.ReactElement; isEditMode?: boolean; }; export type TopbarSessionMenuSectionComponent = (props: TopbarSessionMenuSectionProps) => JSX.Element;