/** * Validates the given payload using JSON schema keyed by the given schema name. Throws if the given payload fails validation. * @param schemaName the schema name use to look up the JSON schema to be used for schema validation. * The list of schema names can be found in compile-validators.js * @param payload javascript object to be validated */ export declare function validateJsonSchema(schemaName: string, payload: any): void; //# sourceMappingURL=schema-validator.d.ts.map