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