import {Ref} from "vue";

export type TabAdminComponentOrientation = "horizontal" | "vertical";

export type SetActiveTabKeyType = (tabKey: string) => void;
export type ActiveTabKeyType = Ref<string>;
