/// import ajv = require("ajv"); declare global { namespace jest { interface Matchers { toBeValidSchema(): R; toMatchSchema(schema: object): R; } } } export const matchers: jest.ExpectExtendMap; export type Options = ajv.Options & { AjvClass?: any }; export function matchersWithOptions(options: Options, extendAjv?: (ajv: ajv.Ajv) => void): jest.ExpectExtendMap;