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