type CloudEventHttpInput = { headers: Record; body: string; }; /** * Extracts the PURISTA message payload from a CloudEvents HTTP request. * * Supports CloudEvents 1.0 structured JSON requests and binary-mode requests * where the HTTP body is JSON. Batch CloudEvents are intentionally rejected * because PURISTA command/subscription handlers process one message per call. */ export declare const parseCloudEventData: ({ headers, body }: CloudEventHttpInput) => T; export {}; //# sourceMappingURL=parseCloudEventData.impl.d.ts.map