import React from "react"; declare const colorList: any; export type TabProps = { className?: string; /** * Value used to identify the selected tab */ value: string; /** * Optional text displayed in the tab */ label?: string; /** * Optional icon displayed in the tab */ icon?: React.ReactElement; /** * Variant of the tab button * @default "standard" */ variant?: "standard" | "caption"; /** * If `true`, the component is disabled * @default false */ disabled?: boolean; /** * Optional color of notification dot */ dotColor?: typeof colorList[number]; sx?: React.CSSProperties & any; }; declare const _default: React.FC; export default _default;