export declare const toTypeOfTransaction: (v: string) => "schedule" | "supported" | "uncategorized" | "matched"; export type TypeOfTransactionType = ReturnType; declare const toCustomerTransactionType: (v: string) => "invoice" | "payment" | "credit_memo" | "sales_receipt" | "delayed_credit" | "delayed_charge" | "refund"; export declare const toCustomerTransactionTypeStrict: (v?: string) => "invoice" | "payment" | "credit_memo" | "sales_receipt" | "delayed_credit" | "delayed_charge" | "refund" | undefined; export type CustomerTransactionType = ReturnType; declare const toVendorTransactionType: (v: string) => "expense" | "check" | "bill" | "bill_payment" | "bill_payment_check" | "bill_payment_credit_card" | "vendor_credit" | "credit_card_credit"; export declare const toVendorTransactionTypeStrict: (v?: string) => "expense" | "check" | "bill" | "bill_payment" | "bill_payment_check" | "bill_payment_credit_card" | "vendor_credit" | "credit_card_credit" | undefined; export type VendorTransactionType = ReturnType; declare const toEmployeeTransactionType: (v: string) => never; export type EmployeeTransactionType = ReturnType; declare const toTransferTransactionType: (v: string) => "transfer" | "credit_card_payment"; export declare const toTransferTransactionTypeStrict: (v?: string) => "transfer" | "credit_card_payment" | undefined; export type TransferTransactionType = ReturnType; export declare const toJEAndDepositTransactionTypeStrict: (v?: string) => "transfer" | "credit_card_payment" | "deposit" | "journal_entry" | undefined; declare const toOtherTransactionType: (v: string) => "transfer" | "credit_card_payment" | "deposit" | "journal_entry"; export type OtherTransactionType = ReturnType; export type TransactionType = CustomerTransactionType | VendorTransactionType | EmployeeTransactionType | OtherTransactionType; export declare const toTransactionType: (v: string) => TransactionType; export declare const toTransactionTypeStrict: (v?: string) => TransactionType | undefined; export declare const ALL_TRANSACTION_CATEGORY: readonly ["credit", "debit"]; export declare const toTransactionCategory: (v: string) => "credit" | "debit"; export type TransactionCategory = ReturnType; export {};