import type { RefObject } from 'react';
import type { StepIndex } from '../Context/types';
export default function useStepAnimation({ activeIndexRef, stepElementRef, executeLayoutAnimationRef, }: {
    activeIndexRef: RefObject<StepIndex>;
    stepElementRef: RefObject<HTMLElement>;
    executeLayoutAnimationRef: RefObject<() => void>;
}): void;
