import React, { FunctionComponent } from 'react'; import { StyledPropsType } from './style'; export interface PropsType { show: boolean; animation: StyledPropsType['animation']; stayMounted?: boolean; zIndex?: number; inline?: boolean; onExited?(): void; 'data-testid'?: string; } declare const TransitionAnimation: FunctionComponent>; export default TransitionAnimation;