import React from 'react'; import { CommonStyledProps } from '../types'; declare type TabBodyProps = { children: React.ReactNode; } & React.HTMLAttributes & CommonStyledProps; declare const TabBody: React.ForwardRefExoticComponent<{ children: React.ReactNode; } & React.HTMLAttributes & CommonStyledProps & React.RefAttributes>; export { TabBody, TabBodyProps }; //# sourceMappingURL=TabBody.d.ts.map