/** * Api Documentation * Api Documentation * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { XHR } from "./XHR"; import { SchematronValidationResult } from "../model/SchematronValidationResult"; export declare class fhcSchematronApi { host: string; headers: Array; fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise; constructor(host: string, headers: any, fetchImpl?: (input: RequestInfo, init?: RequestInit) => Promise); setHeaders(h: Array): void; handleError(e: XHR.XHRError): never; /** * * @summary validateUsingShematron * @param body body * @param xFHCTokenId X-FHC-tokenId * @param schema schema */ validateUsingShematron(xFHCTokenId: string, schema: string, body?: string): Promise; }