declare global { namespace jest { interface Expect { toMatchURL(url: string | URL): void; } interface Matchers { toMatchURL(url: string | URL): R; } interface InverseAsymmetricMatchers { toMatchURL(url: string | URL): void; } } } export {};