import React from 'react'; interface TabContentProps { /** The content of the component. */ children: React.JSX.Element | (React.JSX.Element | null | React.JSX.Element[])[]; /** Overflow behavior */ overflow?: 'auto'; style?: React.CSSProperties; ref?: React.RefObject; } export declare const TabContent: React.ForwardRefExoticComponent & React.RefAttributes>; export {};