import { HTMLAttributes, ReactElement } from 'react';
import { default as styles } from './TabsList.module.css';
import { TabsItemProps } from './components/TabsItem/TabsItem';
export { styles as TabsListClasses };
export interface TabsListProps extends HTMLAttributes {
/** Children should be TabsList.Item components to be rendered as tabs. */
children: ReactElement[];
}
/**
* The TabsList component renders a list of tabs, typically used for navigating between different views
* or filtering content. It visually indicates the currently active tab and supports custom styling.
*/
export declare const TabsList: {
({ className, children, ...restProps }: TabsListProps): JSX.Element;
Item: any;
};