import React from 'react'; export interface Props { /** * 是否显示所有标签 */ showLabels?: boolean; /** * 子元素 */ children?: React.ReactNode; /** * 添加自定义类名 */ className?: string; /** * 值变化时的回调函数 */ onChange?: (e: React.FormEvent, value: string) => void; /** * value值 */ value?: string; /** * 指定背景颜色 */ color?: string; } /** * 底部导航栏 * * @param {Props} props * @returns */ declare const BottomNavigation: React.ForwardRefExoticComponent>; export default BottomNavigation;