import { Contacts, User } from '../constants';
import { MaybeVRef } from '@yanzhen-libs/utils-vue';
type Config = {
    activeTab: MaybeVRef<Contacts>;
    userActiveTab: MaybeVRef<User>;
};
export declare function handleActiveTabKey<K extends Contacts | `${Contacts}-${User}`, D extends string = string>({ activeTab, userActiveTab }: Config, defaultKey?: K | D): K | D;
export {};
