UNPKG

reablocks

Version:
24 lines (23 loc) 577 B
import { FC, ReactNode } from 'react'; import { HTMLMotionProps } from 'motion/react'; export declare const groupVariants: { initial: { transition: { staggerChildren: number; staggerDirection: any; }; }; animate: { transition: { staggerChildren: number; delayChildren: number; }; }; }; export interface MotionGroupProps extends HTMLMotionProps<'div'> { /** * The content of group. */ children: ReactNode; } export declare const MotionGroup: FC<MotionGroupProps>;