import type { BaseProps, BaseDecorator, BaseInterface } from '@studiometa/js-toolkit'; import type { AbstractScrollAnimation } from './AbstractScrollAnimation.js'; export interface AnimationScrollWithEaseProps extends BaseProps { $options: { ease: string; }; } export interface AnimationScrollWithEaseInterface extends BaseInterface { } /** * Extend a `ScrollAnimation` component to use easings. * * @deprecated This decorator is deprecated. Easing can be applied directly via CSS or animation options. */ export declare function animationScrollWithEase(ScrollAnimation: typeof AbstractScrollAnimation): BaseDecorator;