import { z } from 'zod'; import { addressSchema, bankAccountSchema, customerSchema, customerStatusSchema, customerTableFilterValueSchema, customerTableFiltersSchema, newCustomerSchema, tenantSchema, } from '../customer'; export type CustomerTableFilters = z.infer; export type CustomerTableFilterValue = z.infer; export type Address = z.infer; export type BankAccount = z.infer; export type CustomerStatus = z.infer; export type Customer = z.infer; export type NewCustomer = z.infer; export type Tenant = z.infer;