import { AppProps, BlitzPage } from "next/types"; import React, { ComponentPropsWithoutRef } from "react"; export declare function withBlitzInnerWrapper(Page: BlitzPage): { (props: ComponentPropsWithoutRef): JSX.Element; displayName: string; }; export declare function withBlitzAppRoot(UserAppRoot: React.ComponentType): (props: AppProps) => JSX.Element;