import type { MotionAction } from './types'; export type ResolvedMotionAnimation = { keyframes: Keyframe[]; options: KeyframeAnimationOptions; warnings: string[]; }; export type ResolveMotionAnimationOptions = { target?: HTMLElement; }; export declare function resolveMotionAnimation(action: MotionAction, options?: ResolveMotionAnimationOptions): ResolvedMotionAnimation; export declare function getResolvedDuration(options: KeyframeAnimationOptions): number;