export type PageProps = Record; // The `pageContext` that are available in both on the server-side and browser-side export type PageContext = { Page: any; pageProps?: PageProps; documentProps?: { title?: string; description?: string; }; urlPathname?: string; };