export type AnimationType = 'left' | 'fadeIn' | 'none';
export declare const animateLeft: (path: SVGPathElement) => void;
export declare const animateFadeIn: (path: SVGPathElement) => void;
export declare const noneAnimation: (path: SVGPathElement) => void;
export declare const ANIMATIONS: Record<AnimationType, (path: SVGPathElement) => void>;
