import * as Joi from "joi"; import { toBeSchema, toBeSchemaLike, toMatchSchema } from "./matchers"; export * from "./matchers"; export { demo } from "./demo"; export declare const matchers: { toBeSchema: typeof toBeSchema; toBeSchemaLike: typeof toBeSchemaLike; toMatchSchema: typeof toMatchSchema; }; declare global { namespace jest { interface Matchers { toMatchSchema(schema: unknown, options?: Joi.ValidationOptions): R; toBeSchema(): R; toBeSchemaLike(): R; } } }