export interface InteractiveCommandRow { command: string; description: string; menuDescription?: string; aliases?: readonly string[]; hidden?: boolean; } export interface InteractiveCommandSection { title: string; rows: InteractiveCommandRow[]; } export declare const INTERACTIVE_COMMAND_SECTIONS: readonly InteractiveCommandSection[]; export declare const SLASH_MENU_ROWS: readonly InteractiveCommandRow[]; export declare const INTERACTIVE_COMPLETION_COMMANDS: readonly string[]; export declare function commandRowsForSlashInput(value: string, extra?: ReadonlyArray): Array<[string, string]>; export declare function formatInteractiveCommandSections(options?: { indent?: string; commandWidth?: number; includeHidden?: boolean; }): string[]; //# sourceMappingURL=interactive-commands.d.ts.map