import { CSSProperties, ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react';
export interface TabContentProps {
    animated?: boolean | undefined;
    animatedWithMargin?: boolean;
    destroyInactiveTabPane?: boolean | undefined;
    style?: CSSProperties | undefined;
}
declare const TabContent: ForwardRefExoticComponent<PropsWithoutRef<TabContentProps> & RefAttributes<HTMLDivElement>>;
export default TabContent;
