import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListReleaseBranchesGlobals = { /** * 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 ListReleaseBranchesRequest = { /** * Filter by project ID or name. */ project?: string | null | undefined; /** * Search branches by name (case-insensitive contains) */ search?: string | null | undefined; /** * Maximum number of branches to return */ limit?: number | undefined; }; /** * Retrieved distinct branches. */ export type ListReleaseBranchesResponse = { items: Array; }; /** @internal */ export type ListReleaseBranchesRequest$Outbound = { project?: string | null | undefined; search?: string | null | undefined; limit: number; }; /** @internal */ export declare const ListReleaseBranchesRequest$outboundSchema: z.ZodType; export declare function listReleaseBranchesRequestToJSON(listReleaseBranchesRequest: ListReleaseBranchesRequest): string; /** @internal */ export declare const ListReleaseBranchesResponse$inboundSchema: z.ZodType; export declare function listReleaseBranchesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listreleasebranches.d.ts.map