import { ISchema } from'../types';
exportdeclarefunctionobjectMatchesSchema(schema: object, data: any): boolean;
/**
* Creates a schema for the given object. The resulting schema is a simple JSON Schema.
*/exportdeclarefunctionobjectAsSimpleSchema(obj: any): ISchema;