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