import { ObjectFactory } from "../helpers/object-factory"; import { Client } from "./client"; export declare abstract class AbstractClient { protected sbot: any; protected factory: ObjectFactory; protected client: Client; constructor(client: Client, factory: ObjectFactory, sbot: any); }