import { z } from 'zod'; import { createInvoiceSchema, invoiceItemSchema, invoiceSchema, invoiceStatusSchema, invoiceTableFilterValueSchema, invoiceTableFiltersSchema, monthSchema, serviceSchema, updateInvoiceSchema, } from '../invoice'; export type InvoiceTableFilterValue = z.infer; export type InvoiceTableFilters = z.infer; export type Service = z.infer; export type InvoiceItem = z.infer; export type InvoiceStatus = z.infer; export type Month = z.infer; export type Invoice = z.infer; export type CreateInvoice = z.infer; export type UpdateInvoice = z.infer;