import type Client from'./Client';
/**
* Represents the base class of many other classes
*/declareabstractclassBase{
/**
* The main client
*/readonly client: Client;
/**
* @param client The main client
*/constructor(client: Client);
}
export default Base;