import React from 'react'; import { BaseAnimationWrapper } from './BaseAnimationWrapper'; import { WiggleAnimationConfig } from '../../data/WiggleAnimation'; import { AnimationWrapperProps } from '../../Types'; export interface WiggleAnimationProps extends AnimationWrapperProps { animationConfig: WiggleAnimationConfig; } export declare class WiggleAnimationWrapper extends BaseAnimationWrapper { private translateX; private wiggleCount; constructor(props: WiggleAnimationProps); finishAnimation(): void; protected updateCompositeAnimation(): void; protected renderAnimation(content: React.ReactNode): React.ReactNode; }