declare const classNames: {
  readonly tabList: "tabList";
  readonly container: "container";
  readonly tabSwitch: "tabSwitch";
  readonly tabSwitch_icons: "tabSwitch_icons";
  readonly underline: "underline";
  readonly underline_icons: "underline_icons";
};
export default classNames;
export type ClassNames = "tabList" | "container" | "tabSwitch" | "tabSwitch_icons" | "underline" | "underline_icons";
