/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { PanelBarItemProps } from '../index.js';
import { PanelBarItemHandle } from './interfaces/PanelBarItemHandle';
import * as React from 'react';
/**
 * Represents the PanelBarItem component.
 *
 * @remarks
 * Supported children components are: {@link PanelBarItem}.
 */
export declare const PanelBarItem: React.ForwardRefExoticComponent<Omit<PanelBarItemProps, "ref"> & React.RefAttributes<PanelBarItemHandle | null>>;
/**
 * The default props of the PanelBarItem component.
 *
 * @hidden
 */
export declare const panelBarItemDefaultProps: Partial<PanelBarItemProps>;
