import * as React from 'react'; import { Props, State } from './types'; declare class Transition extends React.Component { static defaultProps: { flipMove: boolean; enterAfterExit: boolean; preEnterPose: string; enterPose: string; exitPose: string; }; static getDerivedStateFromProps: (props: Props, state: State) => Partial; state: State; removeChild(key: string): void; shouldComponentUpdate(nextProps: Props, nextState: State): boolean; render(): React.ReactElement React.ReactElement React.Component)>) | (new (props: any) => React.Component)>[]; } export default Transition;