import * as z from "zod/v4-mini"; export type NameSlugDescription5 = { /** * Updated workspace name */ name?: string | undefined; /** * Updated URL-friendly identifier */ slug?: string | undefined; /** * Updated description (null to clear) */ description?: string | null | undefined; /** * Set as the default workspace */ isDefault?: boolean | undefined; /** * Activate or deactivate workspace */ isActive?: boolean | undefined; /** * Updated settings */ settings?: { [k: string]: any; } | undefined; /** * Updated metadata */ metadata?: { [k: string]: any; } | undefined; }; /** @internal */ export type NameSlugDescription5$Outbound = { name?: string | undefined; slug?: string | undefined; description?: string | null | undefined; isDefault?: boolean | undefined; isActive?: boolean | undefined; settings?: { [k: string]: any; } | undefined; metadata?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const NameSlugDescription5$outboundSchema: z.ZodMiniType; export declare function nameSlugDescription5ToJSON(nameSlugDescription5: NameSlugDescription5): string; //# sourceMappingURL=name-slug-description5.d.ts.map