import { Client, type ClientOptions } from "discord.js";
import { ServerGeneratorManager } from "./ServerGeneratorManager.js";
import type { ServerGeneratorOptions } from "./types/index.js";
/**
 * A Discord client with an embedded {@link ServerGeneratorManager}.
 *
 * @export
 * @class ServerGeneratorClient
 * @extends {Client}
 */
export declare class ServerGeneratorClient extends Client {
    readonly serverGeneratorManager: ServerGeneratorManager;
    constructor(options: ClientOptions, managerOptions: ServerGeneratorOptions);
}
