import * as z from "zod/v4-mini"; /** * Schema for creating a metrics dashboard. */ export type MetricDashboardCreate = { /** * Display name for the dashboard. */ name: string; /** * List of metric slugs to display in this dashboard. */ metrics?: Array | undefined; /** * The ID of the organization owning this dashboard. **Required unless you use an organization token.** */ organizationId?: string | null | undefined; }; /** @internal */ export type MetricDashboardCreate$Outbound = { name: string; metrics?: Array | undefined; organization_id?: string | null | undefined; }; /** @internal */ export declare const MetricDashboardCreate$outboundSchema: z.ZodMiniType; export declare function metricDashboardCreateToJSON(metricDashboardCreate: MetricDashboardCreate): string; //# sourceMappingURL=metricdashboardcreate.d.ts.map