import * as z from "zod/v4-mini"; /** * Schema for updating a metrics dashboard. */ export type MetricDashboardUpdate = { /** * Display name for the dashboard. */ name?: string | null | undefined; /** * List of metric slugs to display in this dashboard. */ metrics?: Array | null | undefined; }; /** @internal */ export type MetricDashboardUpdate$Outbound = { name?: string | null | undefined; metrics?: Array | null | undefined; }; /** @internal */ export declare const MetricDashboardUpdate$outboundSchema: z.ZodMiniType; export declare function metricDashboardUpdateToJSON(metricDashboardUpdate: MetricDashboardUpdate): string; //# sourceMappingURL=metricdashboardupdate.d.ts.map