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