import 'vitest'; interface CustomMatchers { toMatchPaths(paths: string[]): R; } declare module 'vitest' { interface Assertion extends CustomMatchers {} interface AsymmetricMatchersContaining extends CustomMatchers {} }