import * as React from 'react'; import type { UnitSpace } from '../../metrics/metrics'; export type TabListProps = React.PropsWithChildren<{ align?: 'start' | 'center' | 'end' | 'stretch' spacing?: Extract bleedX?: boolean animate?: boolean children?: React.ReactNode underline?: 'visible' | 'none' }>; export declare const TabList: ({ align, spacing, animate: animateProp, bleedX, underline, children, }: TabListProps) => React.JSX.Element;