import { ComputedRef, Ref } from 'vue';
import { MaybeRef } from '../types';
export type ConditionalTab = {
    label: string;
    hidden?: boolean;
};
export type UseTabs = {
    tabs: ComputedRef<string[]>;
    tab: Ref<string | undefined>;
};
export declare function useTabs(tabs: MaybeRef<ConditionalTab[]>, tab?: MaybeRef<string | undefined>): UseTabs;
