import { Client } from "../index.js"; export interface RegisterOptions { token: string; applicationId: string; guildId?: string; } export declare function registerCommands(this: Client, options: RegisterOptions): Promise; export declare function unregisterCommands(this: Client, options: RegisterOptions): Promise;