SearchParamInput
type SearchParamInput: string | URLSearchParams | [string, string | boolean | number][] | Record<string, string | boolean | number>;
Represents various types that can be used as search parameters in a URL. This type is a union of string, URLSearchParams, array of key-value pairs, and record of key-value pairs.