import * as z from "zod/v4"; export type DeleteReleaseChannelGlobals = { /** * 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 DeleteReleaseChannelRequest = { name: string; /** * Filter by project ID or name. */ project: string; }; /** @internal */ export type DeleteReleaseChannelRequest$Outbound = { name: string; project: string; }; /** @internal */ export declare const DeleteReleaseChannelRequest$outboundSchema: z.ZodType; export declare function deleteReleaseChannelRequestToJSON(deleteReleaseChannelRequest: DeleteReleaseChannelRequest): string; //# sourceMappingURL=deletereleasechannel.d.ts.map