@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
20 lines (19 loc) • 883 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 { BottomNavigationItemProps } from '../index.js';
import * as React from 'react';
/**
* @hidden
*/
export interface BottomNavigationItemHandle {
element: HTMLElement | null;
}
/**
* Represents the [KendoReact BottomNavigationItem component](https://www.telerik.com/kendo-react-ui/components/layout/bottomnavigation).
*/
export declare const BottomNavigationItem: React.ForwardRefExoticComponent<Omit<BottomNavigationItemProps, "ref"> & React.RefAttributes<BottomNavigationItemHandle | null>>;