import { ToBeClonable } from "./matchers/toBeClonable.js"; import { ToUpdateOptions } from "./matchers/toUpdateOptions.js"; import { ToUpdateState } from "./matchers/toUpdateState.js"; declare module 'vitest' { interface Matchers extends GestureMatchers {} } export type GestureMatchers = ToUpdateOptions & ToBeClonable & ToUpdateState;