export declare const CryptocurrencyTypeEnum: { readonly BITCOIN: "BTC"; readonly BITCOIN_CASH: "BCH"; readonly LITECOIN: "LTC"; }; export type CryptocurrencyTypeEnum = ValuesMap; export declare const TransactionStatusEnum: { readonly PENDING: 1; readonly PROCESSING: 2; readonly APPROVED: 3; readonly IN_DISPUTE: 5; readonly REFUNDED: 6; readonly DOWNLOADED: 7; readonly REFUSED: 8; readonly RELEASED: 11; readonly IN_CANCELLATION: 12; readonly CHARGEBACK: 13; readonly PRE_AUTHORIZED: 14; }; export type TransactionStatusEnum = ValuesMap; export declare const PaymentMethodEnum: { readonly BOLETO: 1; readonly CREDIT_CARD: 2; readonly CRYPTOCURRENCY: 3; readonly DEBIT_CARD: 4; readonly PIX: 6; readonly DEBIT_ACCOUNT: 10; }; export type PaymentMethodEnum = ValuesMap; export declare const CodeTaxTypeEnum: { readonly PERCENTAGE: 1; readonly FIXED: 2; }; export type CodeTaxTypeEnum = ValuesMap; export declare const CodeReceiverTypeEnum: { readonly COMPANY: "1"; readonly SUB_ACCOUNT: "2"; }; export type CodeReceiverTypeEnum = ValuesMap; export declare const DiscountTypeEnum: { readonly FIXED: 1; readonly ANTICIPATION_CALENDAR_DAYS: 2; readonly ANTICIPATION_WORKING_DAYS: 3; }; export type DiscountTypeEnum = ValuesMap;