import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WorkspaceEnvelopeSummary } from "./workspaceenvelopesummary.js"; export type GetWorkspaceEnvelopesResponse = { /** * The summary list of envelopes associated with the workspace */ envelopes: Array | null; }; /** @internal */ export declare const GetWorkspaceEnvelopesResponse$inboundSchema: z.ZodType; export declare function getWorkspaceEnvelopesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getworkspaceenvelopesresponse.d.ts.map