import { TabBarProps } from '.';
export declare const useTabProps: (rawTab?: TabBarProps) => {
    tab: TabBarProps;
};
export declare const useBadge: () => {
    badges: string[];
};
export declare const useToggleDotShow: () => {
    dotIndexs: number[];
};
export declare const useToggleShow: () => {
    show: boolean;
    withAnimation: boolean;
};
export declare const useSelectTab: (tab?: TabBarProps) => {
    currentIndex: number | undefined;
    setCurrent: (url: string) => void;
};
