import React, { PropsWithChildren, ReactElement } from 'react'; import { Tab, TabProps } from './Tab'; export interface TabsProps { /** * A descriptive label for the tabs, required for accessibility. */ label: string; /** * The children for the tabs, only `Tab` components are allowed. */ children: ReactElement, typeof Tab>[]; } export declare const Tabs: React.FC; //# sourceMappingURL=Tabs.d.ts.map