type UseAnimationStateProps = { isOpen: boolean; ref: React.RefObject; }; declare function useAnimationState(props: UseAnimationStateProps): { present: boolean; onComplete(): void; }; export { UseAnimationStateProps, useAnimationState };