/// export * from './utils'; export * from './expectations'; export * from './mocks'; /** * Augment jest expectations with our types. */ declare global { namespace jest { interface Matchers { toExist(): R; toMatchFile(goldenFile: string): R; toMatchDirectory(goldenDirectory: string, blacklist?: Set): R; } } } //# sourceMappingURL=index.d.ts.map