type Options = { mountStyle: Record; unmountStyle: Record; handleUnmount: () => void; }; export default function useUnmountStyle({ mountStyle, unmountStyle, handleUnmount }: Options, delayTime: number): { animationStyle: Record; handleUnmountWithAnimation: () => Promise; }; export {};