import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Status = { availableWorkers?: number | undefined; function?: string | undefined; running?: number | undefined; total?: number | undefined; }; /** @internal */ export declare const Status$inboundSchema: z.ZodType; export declare function statusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=status.d.ts.map