import React from 'react'; import { IComponentBaseProps, ComponentBrandColors, ComponentStatus } from '../types'; export type BottomNavigationItemProps = React.ButtonHTMLAttributes & IComponentBaseProps & { color?: ComponentBrandColors | ComponentStatus; active?: boolean; }; declare const BottomNavigationItem: React.ForwardRefExoticComponent & IComponentBaseProps & { color?: "neutral" | "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | undefined; active?: boolean | undefined; } & React.RefAttributes>; export default BottomNavigationItem;