import React from 'react'; import { ComponentColor } from '../types'; export type TabProps = Omit, 'color'> & { color?: ComponentColor; bgColor?: string; borderColor?: string; active?: boolean; disabled?: boolean; }; declare const Tab: React.ForwardRefExoticComponent, "color"> & { color?: "neutral" | "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error" | undefined; bgColor?: string | undefined; borderColor?: string | undefined; active?: boolean | undefined; disabled?: boolean | undefined; } & React.RefAttributes>; export default Tab;