import * as z from "zod/v4"; import * as models from "../index.js"; export type ReportManagerHeartbeatGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type ReportManagerHeartbeatRequest = { /** * Unique identifier for a manager. */ id: string; managerHeartbeatRequest?: models.ManagerHeartbeatRequest | undefined; }; /** @internal */ export type ReportManagerHeartbeatRequest$Outbound = { id: string; ManagerHeartbeatRequest?: models.ManagerHeartbeatRequest$Outbound | undefined; }; /** @internal */ export declare const ReportManagerHeartbeatRequest$outboundSchema: z.ZodType; export declare function reportManagerHeartbeatRequestToJSON(reportManagerHeartbeatRequest: ReportManagerHeartbeatRequest): string; //# sourceMappingURL=reportmanagerheartbeat.d.ts.map