import { z } from "zod"; import { activityTypeSchema, activitySchema, dashboardStatsSchema, nextInvoiceSchema, dashboardSummarySchema, dashboardErrorSchema, activityFilterSchema, activityFilterConfigSchema, dashboardSummaryResponseSchema, } from "./schema"; export type ActivityType = z.infer; export type Activity = z.infer; export type DashboardStats = z.infer; export type NextInvoice = z.infer; export type DashboardSummary = z.infer; export type DashboardError = z.infer; export type ActivityFilter = z.infer; export type ActivityFilterConfig = z.infer; export type DashboardSummaryResponse = z.infer;