import { DurationUnit } from "../types";
export declare function AnimatedPage({ duration, children }: {
    duration: DurationUnit;
    children: JSX.Element | JSX.Element[];
}): JSX.Element | JSX.Element[];
