import React from 'react';
export interface TabBodyProps {
    /** The tab container body to render Tab children into. */
    tabContainerBodyId: string;
    /** Sets if the tab is the currently active tab or not. */
    active?: boolean;
    /** Children passed to tab body (tab content) */
    children?: React.ReactNode;
}
declare class TabBody extends React.Component<TabBodyProps> {
    constructor(props: any);
    componentDidMount(): void;
    componentWillUnmount(): void;
    render(): any;
}
export default TabBody;
