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