import { z } from "zod"; export declare const accountList_columnTypes: readonly ["account_name", "account_type", "detail_acc_type", "create_date", "create_by", "detail_acc_type", "last_mod_date", "last_mod_by", "account_desc", "account_bal"]; export declare const account_list: z.ZodObject<{ sort_by: z.ZodOptional>; columns: z.ZodOptional>; account_status: z.ZodOptional; } & { account_type: z.ZodOptional>; } & { sort_order: z.ZodOptional>; } & { moddate_macro: z.ZodOptional>; } & { createdate_macro: z.ZodOptional>; } & { start_date: z.ZodOptional>; end_date: z.ZodOptional>; } & { start_moddate: z.ZodOptional>; end_moddate: z.ZodOptional>; }, "strip", z.ZodTypeAny, { start_moddate?: string | undefined; end_moddate?: string | undefined; start_date?: string | undefined; end_date?: string | undefined; sort_order?: "ascend" | "descend" | undefined; moddate_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; createdate_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; account_type?: "Equity" | "Expense" | "AccountsPayable" | "AccountsReceivable" | "Bank" | "OtherCurrentAsset" | "FixedAsset" | "OtherAsset" | "CreditCard" | "OtherCurrentLiability" | "LongTermLiability" | "Income" | "CostOfGoodsSold" | "OtherIncome" | "OtherExpense" | undefined; sort_by?: "account_type" | "account_name" | "detail_acc_type" | "create_date" | "create_by" | "last_mod_date" | "last_mod_by" | "account_desc" | "account_bal" | undefined; columns?: "account_type" | "account_name" | "detail_acc_type" | "create_date" | "create_by" | "last_mod_date" | "last_mod_by" | "account_desc" | "account_bal" | undefined; account_status?: string | undefined; }, { start_moddate?: string | undefined; end_moddate?: string | undefined; start_date?: string | undefined; end_date?: string | undefined; sort_order?: "ascend" | "descend" | undefined; moddate_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; createdate_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; account_type?: "Equity" | "Expense" | "AccountsPayable" | "AccountsReceivable" | "Bank" | "OtherCurrentAsset" | "FixedAsset" | "OtherAsset" | "CreditCard" | "OtherCurrentLiability" | "LongTermLiability" | "Income" | "CostOfGoodsSold" | "OtherIncome" | "OtherExpense" | undefined; sort_by?: "account_type" | "account_name" | "detail_acc_type" | "create_date" | "create_by" | "last_mod_date" | "last_mod_by" | "account_desc" | "account_bal" | undefined; columns?: "account_type" | "account_name" | "detail_acc_type" | "create_date" | "create_by" | "last_mod_date" | "last_mod_by" | "account_desc" | "account_bal" | undefined; account_status?: string | undefined; }>; export type AccountListType = z.infer;