import type { KlawConfig } from "../config/types.js"; import type { ChatCommandDefinition, CommandDetection, CommandNormalizeOptions } from "./commands-registry.types.js"; export declare function normalizeCommandBody(raw: string, options?: CommandNormalizeOptions): string; export declare function getCommandDetection(_cfg?: KlawConfig): CommandDetection; export declare function maybeResolveTextAlias(raw: string, cfg?: KlawConfig): string | null; export declare function resolveTextCommand(raw: string, cfg?: KlawConfig): { command: ChatCommandDefinition; args?: string; } | null;