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>;
