import React from 'react'; import { BoxProps } from '../../Box'; import { TabProps } from './Tab'; export { Tab as TabButton } from './Tab'; export { TabsList as TabListButton } from './TabsList'; export declare function TabsButtonGroup({ tabs, variant, tabsListSx, tabSx, }: { tabs: Array<{ key: T; value: React.ReactNode; }>; variant?: TabProps['variant']; tabsListSx?: BoxProps['sx']; tabSx?: BoxProps['sx']; }): JSX.Element;