import type { BaseConfig, BaseProps, ScrollInViewProps, WithScrolledInViewProps } from '@studiometa/js-toolkit'; import { AbstractScrollAnimation } from './AbstractScrollAnimation.js'; export interface ScrollAnimationChildProps extends BaseProps { $options: WithScrolledInViewProps['$options']; } /** * ScrollAnimationChild class. * * @deprecated Use `ScrollAnimationTarget` instead. */ export declare class ScrollAnimationChild extends AbstractScrollAnimation { /** * Config. */ static config: BaseConfig; /** * Local damped current values. */ dampedCurrent: ScrollInViewProps['dampedCurrent']; /** * Local damped progress. */ dampedProgress: ScrollInViewProps['dampedCurrent']; /** * Display deprecation warning. */ mounted(): void; /** * Compute local damped progress. */ scrolledInView(props: ScrollInViewProps): void; }