export = schemaHasProperty; /** * This function will return `true` if all possible variations of a (possibly composite) schema * define a property with the specified name. * @param {object} schema simple or composite OpenAPI 3.x schema object * @param {string} propertyName name of the object schema property to check for * @returns {boolean} */ declare function schemaHasProperty(schema: object, propertyName: string): boolean; //# sourceMappingURL=schema-has-property.d.ts.map