import type { TransitionEvent } from 'react'; import type { PhaseType, SplashScreenShrinkTarget } from './types'; export declare const useSplashPhase: (visible: boolean, shrinkTarget?: SplashScreenShrinkTarget) => { phase: PhaseType; childrenRevealed: boolean; handleContainerTransitionEnd: (e: TransitionEvent) => void; handleContentTransitionEnd: (e: TransitionEvent) => void; };