export interface WalletBalance {
    country: string;
    balance: string;
    currency: string;
    mno: string;
}
export interface WalletBalancesResponse {
    balances: WalletBalance[];
}
//# sourceMappingURL=wallet.d.ts.map