import * as React from 'react'; /** * The props for the `TabPanels` component. */ export type TabPanelsProps = { /** * The content of the TabPanels component. */ children?: React.ReactNode; }; /** * The wrapper for the collection of Tab Panels. */ export declare function TabPanels(props: TabPanelsProps): React.JSX.Element;