import { r as KlawConfig } from "./types.klaw-xKUw_Rz7.js"; import { t as SkillCommandSpec } from "./skills-BNppxgFh.js"; //#region src/auto-reply/command-status-builders.d.ts declare function buildHelpMessage(cfg?: KlawConfig): string; type CommandsMessageOptions = { page?: number; surface?: string; forcePaginatedList?: boolean; }; type CommandsMessageResult = { text: string; totalPages: number; currentPage: number; hasNext: boolean; hasPrev: boolean; }; declare function buildCommandsMessage(cfg?: KlawConfig, skillCommands?: SkillCommandSpec[], options?: CommandsMessageOptions): string; declare function buildCommandsMessagePaginated(cfg?: KlawConfig, skillCommands?: SkillCommandSpec[], options?: CommandsMessageOptions): CommandsMessageResult; //#endregion export { buildHelpMessage as a, buildCommandsMessagePaginated as i, CommandsMessageResult as n, buildCommandsMessage as r, CommandsMessageOptions as t };