/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PanelBarData } from '../PanelBar'; /** * @hidden */ export interface RenderPanelBarItem { animation?: boolean; keepItemsMounted?: boolean; state: PanelBarData; expanded: string[]; handleSelect: any; parentExpanded?: boolean; level?: number; parentPrivateKey?: string[]; }