import * as z from "zod/v4"; import { GitMetadata, GitMetadata$Outbound } from "./gitmetadata.js"; import { StackByPlatform, StackByPlatform$Outbound } from "./stackbyplatform.js"; export type CreateReleaseRequest = { /** * Project ID or name */ project: string; version?: string | undefined; gitMetadata?: GitMetadata | null | undefined; stack?: StackByPlatform | undefined; rootDirectory?: string | null | undefined; channel?: string | undefined; }; /** @internal */ export type CreateReleaseRequest$Outbound = { project: string; version?: string | undefined; gitMetadata?: GitMetadata$Outbound | null | undefined; stack?: StackByPlatform$Outbound | undefined; rootDirectory?: string | null | undefined; channel?: string | undefined; }; /** @internal */ export declare const CreateReleaseRequest$outboundSchema: z.ZodType; export declare function createReleaseRequestToJSON(createReleaseRequest: CreateReleaseRequest): string; //# sourceMappingURL=createreleaserequest.d.ts.map