import React from 'react'; import { FlintBottomNavigationAction as FlintBottomNavigationActionElement } from '@getufy/flint-ui/bottom-navigation/flint-bottom-navigation-action'; /** * Bottom Navigation Action: Individual navigation item. * * @slot icon - Icon element. * @slot (default) - Label text. */ export interface FlintBottomNavigationActionProps extends React.HTMLAttributes { /** Label text for the action. */ label?: string; /** Unique value for this action. */ value?: unknown; /** If true, this action is currently selected. (Internal property managed by parent) */ active?: boolean; /** Controls label visibility. (Internal property managed by parent) */ showLabel?: boolean; } export declare const FlintBottomNavigationAction: React.ForwardRefExoticComponent>;