/// <reference types="react" />
export declare function Motion({ attach, children, duration, delay, }: {
    attach: any;
    children: any;
    duration?: number;
    delay?: number;
}): JSX.Element;
