import type { StepStatus, MotionStatus } from '../CSSMotion.types'; /** Skip current step */ export declare const SkipStep: false; /** Current step should be update in */ export declare const DoStep: true; export declare function isActive(step: StepStatus): boolean; export declare const useStepQueue: (status: MotionStatus, callback: (step: StepStatus) => Promise | void | typeof SkipStep | typeof DoStep) => [() => void, StepStatus];