import * as React from 'react';
import { SxProp } from '../../system';
import { ColorScales } from '../../theme';
import { AsProp, ChildrenProp, HTMLAttributes, LiteralUnion } from '../../types';
export declare type TabColors = ColorScales;
export declare type TabVariants = 'line' | 'enclosed' | 'pill';
export interface TabsProps extends HTMLAttributes, AsProp, ChildrenProp, SxProp {
    color?: LiteralUnion<TabColors>;
    variant?: LiteralUnion<TabVariants>;
}
export declare const Tabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
