import { statusResponse } from '../types'; type UseAnimationInstructionsProps = { status: statusResponse; hasUserInteracted: boolean; eligiblePlansCount: number; transitionDelay?: number; }; /** * Custom hook for managing accessibility announcements about animation control instructions * * Announces instructions to screen readers about how to control automatic plan animation * when the widget is first loaded and animation is active. * * @param status - Current API response status * @param hasUserInteracted - Whether user has manually interacted with plans * @param eligiblePlansCount - Number of eligible payment plans * @param transitionDelay - Animation transition delay (-1 means disabled) * * @returns void - This hook manages side effects only */ export declare const useAnimationInstructions: ({ status, hasUserInteracted, eligiblePlansCount, transitionDelay, }: UseAnimationInstructionsProps) => void; export {};