/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { Animated, ViewProps } from 'react-native'; import { Animation, AnimationConfig } from './animation'; type TimingAnimationConfig = Omit; export interface PulseAnimationConfig extends AnimationConfig, TimingAnimationConfig { start?: number; end?: number; } export declare class PulseAnimation extends Animation { private readonly value; constructor(config?: PulseAnimationConfig); protected get animation(): Animated.CompositeAnimation; toProps(): ViewProps; } export {};