import React from 'react'; import { BaseAnimationWrapper } from './BaseAnimationWrapper'; import { FadeAnimationConfig } from '../../data/FadeAnimationConfig'; import { AnimationWrapperProps } from '../../..'; export interface FadeAnimationProps extends AnimationWrapperProps { animationConfig: FadeAnimationConfig; } export declare class FadeAnimationWrapper extends BaseAnimationWrapper { private opacity; constructor(props: FadeAnimationProps); finishAnimation(): void; protected renderAnimation(content: React.ReactNode): React.ReactNode; protected updateCompositeAnimation(): void; }