export interface TransactionUsage {
    transaction_scope: TransactionUsage.TransactionScopeEnum;
    usage_scope: TransactionUsage.UsageScopeEnum;
}
export declare namespace TransactionUsage {
    const validTransactionScopeEnum: readonly ["ALL_TRANSACTIONS", "ONLINE_TRANSACTION", "CONTACTLESS_TRANSACTION", "CONTACT_CHIP_TRANSACTION", "MAGSTRIPE", "CASH_WITHDRAWAL", "BILL_PAYMENT", "ACCOUNT_FUNDING", "UNKNOWN"];
    type TransactionScopeEnum = (typeof validTransactionScopeEnum)[number] | 'UNKNOWN';
    const validUsageScopeEnum: readonly ["ALL", "DOMESTIC", "INTERNATIONAL", "UNKNOWN"];
    type UsageScopeEnum = (typeof validUsageScopeEnum)[number] | 'UNKNOWN';
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=transactionUsage.d.ts.map