import type { Client } from "../Client";
export declare class Base {
    /**
     * the client instance
     */
    readonly client: Client;
    constructor(client: Client);
}
