import * as React from 'react'; import * as PropTypes from 'prop-types'; import { ITabsContext } from './TabsContext'; interface State { transform: string; current: HTMLDivElement; animate: boolean; } declare class Content extends React.Component { static displayName: string; static propTypes: PropTypes.ValidationMap; static contextType: React.Context; readonly context: ITabsContext; readonly state: { transform: any; current: any; animate: boolean; }; private checkParent; componentWillMount(): void; private onChange; private updateTransform; private renderChildren; private shouldTransformUpdate; componentWillReceiveProps(props: any, context: ITabsContext): void; componentDidUpdate(): void; render(): JSX.Element; } declare namespace Content { interface Props extends React.Props<{}> { className?: string; style?: React.CSSProperties; } } export default Content;