you should be able to do like below
export default async function Page({ searchParams }: { searchParams: Promise<{ hello: string | undefined }> }) {
const { hello } = await searchParams
// your code here
}
Please check the docs https://nextjs.org/docs/app/api-reference/file-conventions/page#searchparams-optional