import { MutableRefObject } from "react";
export interface Content {
    children?: any;
    style?: object;
    scroll?: boolean;
    snap?: boolean;
    active?: boolean;
    fallback?: any;
    reference?: MutableRefObject<any>;
}
export default function Page(props: Content): import("react").JSX.Element;
//# sourceMappingURL=Page.d.ts.map