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