import * as z from "zod/v3"; export type ReportUpdate = { /** * The name of the report. */ name?: string | null | undefined; /** * A description of the report. */ description?: string | null | undefined; /** * Whether the report schedule is enabled. */ scheduleEnabled?: boolean | null | undefined; }; /** @internal */ export type ReportUpdate$Outbound = { name?: string | null | undefined; description?: string | null | undefined; schedule_enabled?: boolean | null | undefined; }; /** @internal */ export declare const ReportUpdate$outboundSchema: z.ZodType; export declare function reportUpdateToJSON(reportUpdate: ReportUpdate): string; //# sourceMappingURL=reportupdate.d.ts.map