import { z } from "zod"; export declare const tax_summary: z.ZodObject<{ agency_id: z.ZodString; } & { accounting_method: z.ZodOptional>; } & { start_date: z.ZodOptional>; end_date: z.ZodOptional>; } & { date_macro: z.ZodOptional>; } & { sort_order: z.ZodOptional>; }, "strip", z.ZodTypeAny, { agency_id: string; start_date?: string | undefined; end_date?: string | undefined; sort_order?: "ascend" | "descend" | undefined; date_macro?: "Today" | "Yesterday" | "This Week" | "Last Week" | "This Week-to-date" | "Last Week-to-date" | "Next Week" | "Next 4 Weeks" | "This Month" | "Last Month" | "This Month-to-date" | "Last Month-to-date" | "Next Month" | "This Fiscal Quarter" | "Last Fiscal Quarter" | "This Fiscal Quarter-to-date" | "Last Fiscal Quarter-to-date" | "Next Fiscal Quarter" | "This Fiscal Year" | "Last Fiscal Year" | "This Fiscal Year-to-date" | "Last Fiscal Year-to-date" | "Next Fiscal Year" | undefined; accounting_method?: "Cash" | "Accrual" | undefined; }, { agency_id: string; start_date?: string | undefined; end_date?: string | undefined; sort_order?: "ascend" | "descend" | undefined; date_macro?: "Today" | "Yesterday" | "This Week" | "Last Week" | "This Week-to-date" | "Last Week-to-date" | "Next Week" | "Next 4 Weeks" | "This Month" | "Last Month" | "This Month-to-date" | "Last Month-to-date" | "Next Month" | "This Fiscal Quarter" | "Last Fiscal Quarter" | "This Fiscal Quarter-to-date" | "Last Fiscal Quarter-to-date" | "Next Fiscal Quarter" | "This Fiscal Year" | "Last Fiscal Year" | "This Fiscal Year-to-date" | "Last Fiscal Year-to-date" | "Next Fiscal Year" | undefined; accounting_method?: "Cash" | "Accrual" | undefined; }>; export type TaxSummaryType = z.infer;