export declare type AnimateObject = {
    translate: {
        type: string;
        value: number;
        unit: string;
    };
    opacity: number;
};
export declare type Animations = 'simple' | 'rightLeft' | 'leftRight' | 'topDown' | 'downTop' | 'flash' | 'flip' | 'scale' | 'press';
declare const animationStyles: Record<Animations, AnimateObject[]>;
export default animationStyles;
