/** * This was generated from lottie-web, the lottie-web library is 273.1kB minified * just for one animation. So what we've done is the following: * 1. Run the lottie-web animation in storybook. * 2. Use MutationObserver to listen for all the changes to the SVG path's d attribute. * ```ts * const o = new MutationObserver(([mr]) => console.log(mr.target.attributes['d'].nodeValue)) * o.observe($('.TMSquiggle > path'), { attributes: true }) * ``` * 3. Store them in an array here. */ export declare const animatedLoaderPaths: string[];