import "./TabMenu.scss";
export type tabView = "mfg-vertical" | "mfg-horizontal";
export interface Props {
    TabLabel: any[];
    TabValue: any[];
    tabView?: tabView;
    customClass?: string;
    customId?: string;
}
declare const TabMenu: ({ TabLabel, TabValue, tabView, customClass, customId }: Props) => import("react/jsx-runtime").JSX.Element;
export default TabMenu;
