interface CustomMatchers<R = unknown> {
    /**
     * Normalizes whitespace and performs string comparisons
     */
    toBeSimilarStringTo(expected: string): R;
}
declare module 'vitest' {
    interface Matchers<T = any> extends CustomMatchers<T> {
    }
}
export * from './mock-graphql-server.js';
export * from './resolvers-common.js';
export * from './typescript.js';
