import { z } from "zod"; export declare const journalReport_columnTypes: readonly ["acct_num_with_extn", "account_name", "credit_amt", "create_by", "create_date", "debt_amt", "doc_num", "due_date", "is_ar_paid", "is_ap_paid", "item_name", "journal_code_name", "last_mod_by", "last_mod_date", "memo", "name", "neg_open_bal", "paid_date", "pmt_mthd", "quantity", "rate", "tx_date", "txn_num", "txn_type"]; export declare const journal_report: z.ZodObject<{ columns: z.ZodOptional>; sort_by: z.ZodOptional>; journal_code: z.ZodOptional; } & { start_date: z.ZodOptional>; end_date: z.ZodOptional>; } & { date_macro: z.ZodOptional>; } & { sort_order: z.ZodOptional>; }, "strip", z.ZodTypeAny, { journal_code?: string | undefined; 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; sort_by?: "name" | "memo" | "account_name" | "create_date" | "create_by" | "last_mod_date" | "last_mod_by" | "doc_num" | "due_date" | "tx_date" | "txn_type" | "is_ap_paid" | "is_ar_paid" | "item_name" | "quantity" | "rate" | "acct_num_with_extn" | "credit_amt" | "debt_amt" | "journal_code_name" | "neg_open_bal" | "paid_date" | "pmt_mthd" | "txn_num" | undefined; columns?: "name" | "memo" | "account_name" | "create_date" | "create_by" | "last_mod_date" | "last_mod_by" | "doc_num" | "due_date" | "tx_date" | "txn_type" | "is_ap_paid" | "is_ar_paid" | "item_name" | "quantity" | "rate" | "acct_num_with_extn" | "credit_amt" | "debt_amt" | "journal_code_name" | "neg_open_bal" | "paid_date" | "pmt_mthd" | "txn_num" | undefined; }, { journal_code?: string | undefined; 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; sort_by?: "name" | "memo" | "account_name" | "create_date" | "create_by" | "last_mod_date" | "last_mod_by" | "doc_num" | "due_date" | "tx_date" | "txn_type" | "is_ap_paid" | "is_ar_paid" | "item_name" | "quantity" | "rate" | "acct_num_with_extn" | "credit_amt" | "debt_amt" | "journal_code_name" | "neg_open_bal" | "paid_date" | "pmt_mthd" | "txn_num" | undefined; columns?: "name" | "memo" | "account_name" | "create_date" | "create_by" | "last_mod_date" | "last_mod_by" | "doc_num" | "due_date" | "tx_date" | "txn_type" | "is_ap_paid" | "is_ar_paid" | "item_name" | "quantity" | "rate" | "acct_num_with_extn" | "credit_amt" | "debt_amt" | "journal_code_name" | "neg_open_bal" | "paid_date" | "pmt_mthd" | "txn_num" | undefined; }>; export type JournalReportType = z.infer;