import { default as React } from 'react'; export interface TabListProps { children: React.ReactNode; className?: string; /** Whether to show the bottom border. Defaults to true. */ showBorder?: boolean; /** Tabs stretch to fill the full container width, with centred text. `'mobile'` applies only below the tablet breakpoint. */ fullWidth?: boolean | 'mobile'; } export declare function TabList({ children, className, showBorder, fullWidth }: TabListProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TabList.d.ts.map