export type { PageProps }; type Page = (pageProps: PageProps) => React.ReactElement; type PageProps = Record; declare global { namespace Vike { interface PageContext { Page: Page; pageProps?: PageProps; fetch?: typeof fetch; env: import("../../workers/site/env"); } } }