//#region src/rc-message/rc-message.d.ts interface HDR { [key: string]: string | undefined; } interface BDY { [key: string]: string | undefined; } declare class RcMessage { private static xmlOptions; static fromXml(_xmlStr: string): RcMessage; headers: HDR; body: BDY; constructor(headers: HDR, body: BDY); toXml(): string; } //#endregion export { BDY, HDR, RcMessage as default }; //# sourceMappingURL=rc-message.d.cts.map