import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
interface TabbarItemProps extends ViewProps {
    className?: string;
    value?: any;
    icon?: ReactNode;
    badge?: boolean | string | number | ReactNode;
    children?: ReactNode;
}
export default function TabbarItem(props: TabbarItemProps): JSX.Element;
export {};
