import type { PropType } from 'vue'; interface CustomMatchers { toBeRequired(): R; toBeType(expectedPropType: PropType): R; toDefaultTo(defaultValue: unknown): R; toValidate(...cases: unknown[]): R; } declare module 'vitest' { interface Assertion extends CustomMatchers { } interface AsymmetricMatchersContaining extends CustomMatchers { } } export {};