import { UnionToIntersection } from './types/utility.mjs'; /** * Next.js page props type. * @see https://nextjs.org/docs/app/api-reference/file-conventions/page#props * @see https://nextjs.org/docs/app/building-your-application/routing/dynamic-routes#good-to-know */ interface NextPageProps { params: Promise>; searchParams: Promise<{ [K in TSearchParams]?: string | string[]; }>; } export type { NextPageProps };