import { ReactNode } from 'react'; import { TransitionProps } from 'react-transition-group/Transition'; type Props = Partial & { children: ReactNode; }; declare const Transition: ({ children, ...props }: Props) => import("react/jsx-runtime").JSX.Element; export { Transition };