/** * Drumbeat D4 cross-host resume request body. The remote transport remains a * delivery sink: one host drops this envelope into the remote host's inbox, * then the remote host consumes it and relances locally with its own adapters. */ export declare const H2A_DRUMBEAT_RESUME_BODY_KIND: "drumbeat.resume"; export interface H2ADrumbeatResumeBody { readonly kind: typeof H2A_DRUMBEAT_RESUME_BODY_KIND; readonly target: string; readonly reason: string; readonly requestedBy: string; } /** Total parser: malformed, unknown, or incomplete bodies return undefined. */ export declare function parseDrumbeatResumeBody(value: unknown): H2ADrumbeatResumeBody | undefined; //# sourceMappingURL=drumbeat-resume.d.ts.map