import React from "react"; declare const colorList: any; export type TabsProps = { children: React.ReactNode; className?: string; /** * Value used to identify the selected tab */ value: string; /** * Callback to change the selected tab */ onChange: (value: string) => void; /** * Color of the underline for selected tab * @default "primary" */ color?: typeof colorList[number]; /** * Standard has no scroll. Scrollable has scroll. * @default "scrollable" */ variant?: "standard" | "scrollable" | "caption"; /** * Show buttons to scroll left and right. "auto" is for automatically show/hide buttons. "on"/"off" to show/hide buttons. * @default "auto" */ scrollButtons?: "auto" | "on" | "off"; sx?: React.CSSProperties & any; }; declare const _default: React.FC; export default _default;