import React from 'react'; import { DynamicIconProps } from './DynamicIcon'; export interface BottomNavigationActionProps { /** If true, the BottomNavigationAction will show its label. */ showLabel?: boolean; /** Dynamic Icon Props */ icon?: DynamicIconProps; /** The label element */ label?: React.ReactNode; /** BottomNavigationAction value */ value?: string; } export declare const BottomNavigationActionDefaultProps: {}; /** * # 🗂 BottomNavigationAction * A single tab component in the Bottom Navigation. */ export declare const BottomNavigationAction: React.ComponentType;