import { Animated, ViewProps } from 'react-native'; import { Animation, AnimationConfig } from './animation'; declare type TimingAnimationConfig = Omit; export interface ShakeAnimationConfig extends AnimationConfig, TimingAnimationConfig { start?: number; offset?: number; } export declare class ShakeAnimation extends Animation { private value; protected get animation(): Animated.CompositeAnimation; constructor(config?: ShakeAnimationConfig); toProps(): ViewProps; } export {};