import { Lang } from './lang';
export type SearchParams = {
searchParams: S & { [key: string]: string };
};
export type Params
= { params: P; }; export type LangParams = { lang: Lang; }; export type UriParams = { uri?: string; }; export type LayoutArgs
= P extends undefined ? {} : Params
; export type PageArgs
= LayoutArgs
&
(S extends undefined ? {} : SearchParams);