import * as z from "zod/v4"; export type CreateReleaseChannelGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type CreateReleaseChannelRequestBody = { name: string; /** * Unique identifier for the release. */ releaseId?: string | undefined; }; export type CreateReleaseChannelRequest = { /** * Filter by project ID or name. */ project: string; requestBody?: CreateReleaseChannelRequestBody | undefined; }; /** @internal */ export type CreateReleaseChannelRequestBody$Outbound = { name: string; releaseId?: string | undefined; }; /** @internal */ export declare const CreateReleaseChannelRequestBody$outboundSchema: z.ZodType; export declare function createReleaseChannelRequestBodyToJSON(createReleaseChannelRequestBody: CreateReleaseChannelRequestBody): string; /** @internal */ export type CreateReleaseChannelRequest$Outbound = { project: string; RequestBody?: CreateReleaseChannelRequestBody$Outbound | undefined; }; /** @internal */ export declare const CreateReleaseChannelRequest$outboundSchema: z.ZodType; export declare function createReleaseChannelRequestToJSON(createReleaseChannelRequest: CreateReleaseChannelRequest): string; //# sourceMappingURL=createreleasechannel.d.ts.map