import * as z from "zod/v3"; export type RegistryConfig = { auth?: string | undefined; registryUrl?: string | undefined; image: string; }; /** @internal */ export type RegistryConfig$Outbound = { auth?: string | undefined; registryUrl?: string | undefined; image: string; }; /** @internal */ export declare const RegistryConfig$outboundSchema: z.ZodType; export declare function registryConfigToJSON(registryConfig: RegistryConfig): string; //# sourceMappingURL=registryconfig.d.ts.map