import React from 'react'; import { IComponentBaseProps, ComponentSize } from '../types'; import { BottomNavigationItemProps as ItemProps } from './BottomNavigationItem'; import { BottomNavigationLabelProps as LabelProps } from './BottomNavigationLabel'; export type BottomNavigationItemProps = ItemProps; export type BottomNavigationLabelProps = LabelProps; export type BottomNavigationProps = React.HTMLAttributes & IComponentBaseProps & { size?: ComponentSize; }; declare const _default: React.ForwardRefExoticComponent & IComponentBaseProps & { size?: "lg" | "md" | "sm" | "xs" | undefined; } & React.RefAttributes> & { Item: React.ForwardRefExoticComponent & IComponentBaseProps & { color?: "neutral" | "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | undefined; active?: boolean | undefined; } & React.RefAttributes>; Label: React.ForwardRefExoticComponent>; }; export default _default;