import * as React from 'react'; import { OverridableComponent, OverrideProps } from '../OverridableComponent'; export interface BottomNavigationTypeMap

{ props: P & { /** * Callback fired when the value changes. * * @param {object} event The event source of the callback. * @param {any} value We default to the index of the child. */ onChange?: (event: React.ChangeEvent<{}>, value: any) => void; /** * If `true`, all `BottomNavigationAction`s will show their labels. * By default, only the selected `BottomNavigationAction` will show its label. */ showLabels?: boolean; /** * The value of the currently selected `BottomNavigationAction`. */ value?: any; }; defaultComponent: D; classKey: BottomNavigationClassKey; } /** * * Demos: * * - [Bottom Navigation](https://material-ui.com/components/bottom-navigation/) * * API: * * - [BottomNavigation API](https://material-ui.com/api/bottom-navigation/) */ declare const BottomNavigation: OverridableComponent; export type BottomNavigationClassKey = 'root'; export type BottomNavigationProps< D extends React.ElementType = BottomNavigationTypeMap['defaultComponent'], P = {} > = OverrideProps, D>; export default BottomNavigation;