import { FlexProps } from '@chakra-ui/react'; import { ReactNode } from 'react'; export declare const TabBarHeight = 16; export declare function TabBar(props: FlexProps): import("react").JSX.Element; export interface TabBarTabProps extends FlexProps { icon: ReactNode; label?: string; badgeLabel?: string | number; badgeDescription?: string; } export declare const TabBarTab: import('@chakra-ui/react').ComponentWithAs<"div", TabBarTabProps>;