import React, { FC } from 'react'; interface TabGroupProps { /** Tabs to render. Only will render the Tab component. */ children?: React.ReactNode; /** Max width of the group. Defaults to 100% of parent. */ maxWidth?: number; } export declare const TabGroup: FC; export {};