import { ISettlements, IAffirmations } from '../trading'; import { IWallet } from '../wallet'; export interface IEnterprise { url(query?: string): string; coinUrl(query?: string): string; coinWallets(params?: Record): Promise; users(params?: Record): Promise; getFeeAddressBalance(params?: Record): Promise; addUser(params?: any): Promise; removeUser(params?: any): Promise; getFirstPendingTransaction(params?: Record): Promise; settlements(): ISettlements; affirmations(): IAffirmations; } //# sourceMappingURL=iEnterprise.d.ts.map