import React from 'react'; import { BaseAnimationWrapper } from './BaseAnimationWrapper'; import { ScaleAnimationConfig } from '../../data/ScaleAnimationConfig'; import { AnimationWrapperProps } from '../../Types'; export interface ScaleAnimationProps extends AnimationWrapperProps { animationConfig: ScaleAnimationConfig; } export declare class ScaleAnimationWrapper extends BaseAnimationWrapper { private scale; constructor(props: ScaleAnimationProps); finishAnimation(): void; protected updateCompositeAnimation(): void; protected renderAnimation(content: React.ReactNode): React.ReactNode; }