import type { SkillCommandSpec } from "../agents/skills.js"; import type { KlawConfig } from "../config/types.klaw.js"; export declare function buildHelpMessage(cfg?: KlawConfig): string; export type CommandsMessageOptions = { page?: number; surface?: string; forcePaginatedList?: boolean; }; export type CommandsMessageResult = { text: string; totalPages: number; currentPage: number; hasNext: boolean; hasPrev: boolean; }; export declare function buildCommandsMessage(cfg?: KlawConfig, skillCommands?: SkillCommandSpec[], options?: CommandsMessageOptions): string; export declare function buildCommandsMessagePaginated(cfg?: KlawConfig, skillCommands?: SkillCommandSpec[], options?: CommandsMessageOptions): CommandsMessageResult;