import { JsonCustomConvert } from "json2typescript"; /** * @export * @enum {string} */ export declare enum PaymentAccountTypeId { None = 0, AccountsReceivableAccountsPayable = 1, AccountsReceivable = 2, AccountsPayable = 3 } export declare class PaymentAccountTypeIdConverter implements JsonCustomConvert { serialize(data: PaymentAccountTypeId): PaymentAccountTypeId; deserialize(enumType: string): PaymentAccountTypeId; }