/** * A custom hook to handle the onCloseAnimationFinished callback of the ModalDialog component. */ export declare const useOnCloseAnimationFinished: ({ dialog, open, onCloseAnimationFinished, }: { dialog: React.RefObject; open: boolean; onCloseAnimationFinished: () => void; }) => void;