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