import { Client, type ClientOptions } from "discord.js"; export type CustomClientOptions = Partial; /** * Creates and configures a Discord.js client instance integrated with ConstaticApp. * * This function initializes a `Client`, assigns the provided bot token, binds * lifecycle events, and automatically wires command handlers, autocomplete * handlers, and general interaction responders from the Constatic framework. * * The client will log a formatted startup message once it becomes ready. */ export declare function createClient(token: string, options: CustomClientOptions): Client;