import * as z from "zod/v4-mini"; export type NameSlugDescription3 = { name?: string | undefined; slug?: string | undefined; description?: string | null | undefined; logoUrl?: string | null | undefined; billingEmail?: string | null | undefined; billingPlan?: string | undefined; isActive?: boolean | undefined; metadata?: { [k: string]: any; } | null | undefined; }; /** @internal */ export type NameSlugDescription3$Outbound = { name?: string | undefined; slug?: string | undefined; description?: string | null | undefined; logoUrl?: string | null | undefined; billingEmail?: string | null | undefined; billingPlan?: string | undefined; isActive?: boolean | undefined; metadata?: { [k: string]: any; } | null | undefined; }; /** @internal */ export declare const NameSlugDescription3$outboundSchema: z.ZodMiniType; export declare function nameSlugDescription3ToJSON(nameSlugDescription3: NameSlugDescription3): string; //# sourceMappingURL=name-slug-description3.d.ts.map