import React, { type ComponentProps, type FunctionComponent, type ReactNode } from 'react'; import { Box } from '../Box/Box'; interface TabPanesContextValue { paneIndex: number; renderInactive: boolean; } export declare const TabPanesContext: React.Context; interface TabPanesProps extends Pick, 'paddingTop' | 'paddingBottom'> { /** Render tab panels even when visually hidden. */ renderInactivePanes?: boolean; children?: ReactNode; } export declare const TabPanes: FunctionComponent; export {}; //# sourceMappingURL=TabPanes.d.ts.map