import { z } from 'zod'; export declare const Audience: z.ZodObject<{ id: z.ZodString; name: z.ZodOptional; description: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: string; name?: string | undefined; description?: string | undefined; }, { id: string; name?: string | undefined; description?: string | undefined; }>; export type AudienceLike = z.input; export type Audience = z.infer;