import type { ReactElement, ReactNode } from 'react' import type { NextComponentType, NextPageContext } from 'next/dist/shared/lib/utils' declare module 'next' { export declare type NextPage
= NextComponentType & { getLayout?: (page: ReactElement) => ReactNode } }