import React from "react";
import { TabProps as MuiTabProps } from "@mui/material/Tab";
export type TabProps = Pick<MuiTabProps, "value" | "label" | "icon" | "disabled">;
export declare const Tab: React.FC<TabProps>;
