import * as z from "zod/v3"; export type RunBuildGlobals = { orgId?: string | undefined; }; export type RunBuildRequest = { buildId: string; orgId?: string | undefined; }; /** @internal */ export type RunBuildRequest$Outbound = { buildId: string; orgId?: string | undefined; }; /** @internal */ export declare const RunBuildRequest$outboundSchema: z.ZodType; export declare function runBuildRequestToJSON(runBuildRequest: RunBuildRequest): string; //# sourceMappingURL=runbuild.d.ts.map