import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type Workspace = { /** * Unique identifier for the workspace. */ id: string; /** * Workspace name. */ name: string; logoUrl?: string | null | undefined; createdAt: Date; }; /** @internal */ export declare const Workspace$inboundSchema: z.ZodType; export declare function workspaceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workspace.d.ts.map