import type { MotionPlaybackContext, MotionPlaybackResult, MotionRule, NormalizedMotionRule } from './types'; export declare function clearMotionLabAnimations(target: HTMLElement): void; export declare function reverseMotionLabAnimations(target: HTMLElement, ruleId?: string): void; export declare function resolveMotionPlaybackTarget(id: string, rule: NormalizedMotionRule, context: MotionPlaybackContext, root: ParentNode): HTMLElement | null; export declare function reverseMotionRuleAnimations(rule: MotionRule, context?: MotionPlaybackContext): void; export declare function playMotionRule(rule: MotionRule, context?: MotionPlaybackContext): Promise;