import { default as React, ReactNode } from 'react'; type Context = { index: number; }; export declare const TabPanelsContext: React.Context; export declare const useTabPanelsContext: () => Context; export type TabPanelsProps = { /** * The tab panels to display */ children: ReactNode[]; }; export declare const TabPanels: ({ children }: TabPanelsProps) => React.JSX.Element; export {}; //# sourceMappingURL=TabPanels.d.ts.map