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