import { IApiResponseCollection, ISubAccount } from '..'; export interface ISubAccountService { fetchSubAccounts(accountId: string, authToken: string, params: any): Promise>; } export declare class SubAccountService implements ISubAccountService { fetchSubAccounts(accountId: string, authToken: string, params: any): Promise>; }