import { ViewStyle } from 'react-native';
import { Animation, AnimationConfig } from './animation';
export declare type IconAnimation = Animation<any, ViewStyle>;
export interface IconAnimationRegistry {
    zoom: IconAnimation;
    pulse: IconAnimation;
    shake: IconAnimation;
}
export declare function getIconAnimation(animation?: keyof IconAnimationRegistry, config?: AnimationConfig): IconAnimation;
