/// import { CollectionChildren } from '@react-types/shared'; import { OverflowVals, SpaceVals } from '../../enhancers'; export declare type TabPanelsProps = { children: CollectionChildren; /** * Padding val to apply to the TabPanels container. Defaults to `4`. */ p?: SpaceVals; /** * Margin val to apply to the TabPanels container. Defaults to `0`. */ m?: SpaceVals; /** * overflowY val to apply to the TabPanels container. */ overflowY?: OverflowVals; }; export declare function TabPanels({ p, m, overflowY, ...props }: TabPanelsProps): JSX.Element;