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