import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WorkspaceDto = { id: string; name?: string | undefined; }; /** @internal */ export declare const WorkspaceDto$inboundSchema: z.ZodType; /** @internal */ export type WorkspaceDto$Outbound = { id: string; name?: string | undefined; }; /** @internal */ export declare const WorkspaceDto$outboundSchema: z.ZodType; export declare function workspaceDtoToJSON(workspaceDto: WorkspaceDto): string; export declare function workspaceDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workspacedto.d.ts.map