///
import { CollectionChildren } from '@react-types/shared';
import { FontSizeVals, IFlexShorthandProps } from '../../enhancers';
import { DensityVals } from './variants';
export declare type TabListOwnProps = {
children: CollectionChildren;
/**
* Font size of the tabs - defaults to inheriting whatever the font size of parent container is.
*/
fontSize?: FontSizeVals;
/**
* Controls the amount of space and padding for the tabs. Defaults to `regular`.
*/
density?: DensityVals;
/**
* Controls whether the tabs wrap.
*/
wrap?: IFlexShorthandProps['wrap'];
};
/**
* A TabList is used within Tabs to group tabs that a user can switch between.
* The keys of the items within the must match up with a corresponding item inside the .
*/
export declare function TabList({ fontSize, density, wrap, ...props }: TabListOwnProps): JSX.Element;