/*! * ======================================================================== * @rzl-zone/next-kit * ------------------------------------------------------------------------ * Version: `0.10.4` * Author: `Rizalvin Dwiky ` * Repository: `https://github.com/rzl-zone/rzl-zone/tree/main/packages/next-kit` * ======================================================================== */ declare class ReadonlyURLSearchParams extends URLSearchParams { /** Creates a ReadonlyURLSearchParams instance from a full pathname. * * @param pathname The full pathname * @returns */ static from(pathname: URL | string): ReadonlyURLSearchParams; /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. */ append(): void; /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. */ delete(): void; /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. */ set(): void; /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. */ sort(): void; } export { ReadonlyURLSearchParams as t };