Files
wdi-dashboard/node_modules/@chakra-ui/react-use-animation-state/dist/index.d.ts
2024-08-16 15:06:52 +05:30

11 lines
268 B
TypeScript

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