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