import IClient from './IClient'; export default abstract class IClientProvider { abstract getClient(): Promise; }