import React from 'react';
declare type StyleAnimationProps = {
    children: React.ReactNode;
    type: string;
    duration: string;
    onRest: (value?: any) => void;
};
declare function StyleAnimation(props: StyleAnimationProps): JSX.Element;
export default StyleAnimation;
