import "vitest"; interface Matchers { toHaveBeenWarned(): R; toHaveBeenWarnedLast(): R; toHaveBeenWarnedTimes(n: number): R; } declare module "vitest" { interface Assertion extends Matchers {} }