import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateRepoRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createRepoRequest: components.CreateRepoRequest; }; /** @internal */ export declare const CreateRepoRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateRepoRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; CreateRepoRequest: components.CreateRepoRequest$Outbound; }; /** @internal */ export declare const CreateRepoRequest$outboundSchema: z.ZodType; export declare function createRepoRequestToJSON(createRepoRequest: CreateRepoRequest): string; export declare function createRepoRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createrepo.d.ts.map