import * as z from "zod/v3"; import * as components from "../components/index.js"; export type RunBuildRegistryGlobals = { orgId?: string | undefined; }; export type RunBuildRegistryRequest = { buildId: string; orgId?: string | undefined; registryConfig: components.RegistryConfig; }; /** @internal */ export type RunBuildRegistryRequest$Outbound = { buildId: string; orgId?: string | undefined; RegistryConfig: components.RegistryConfig$Outbound; }; /** @internal */ export declare const RunBuildRegistryRequest$outboundSchema: z.ZodType; export declare function runBuildRegistryRequestToJSON(runBuildRegistryRequest: RunBuildRegistryRequest): string; //# sourceMappingURL=runbuildregistry.d.ts.map