@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
24 lines (23 loc) • 949 B
TypeScript
/**
* @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>;