import 'vitest'; interface CustomMatchers { toEqualParsedQuery: (expected: unknown) => R; toEqualParsedQueryIgnoring: (selector: (obj: object) => boolean, keys: string[], expected: unknown) => R; } declare module 'vitest' { interface Assertion extends CustomMatchers { } interface AsymmetricMatchersContaining extends CustomMatchers { } } export {};