import { default as React } from 'react'; import { BottomBarProps } from '../bottom-bar'; export interface BottomActionProps extends Omit { selected?: boolean; label?: string | React.ReactNode; showLabel?: boolean; icon: React.ReactNode; activeIcon: React.ReactNode; badge?: string; } declare const BottomAction: { (props: BottomActionProps): React.JSX.Element; displayName: string; }; export default BottomAction;