import * as React from 'react'; import { StandardProps } from '..'; export interface BottomNavigationProps extends StandardProps< React.HTMLAttributes, BottomNavigationClassKey, 'onChange' > { children: React.ReactNode; onChange?: (event: React.ChangeEvent<{}>, value: any) => void; showLabels?: boolean; value?: any; } export type BottomNavigationClassKey = 'root'; declare const BottomNavigation: React.ComponentType; export default BottomNavigation;