import type { SlashCommandContext } from './commands/types.js'; import type { TUIState } from './state.js'; /** * Dispatch a slash command input to the appropriate handler. * Returns true if the command was handled (or was unknown), false if not a command. */ export declare function dispatchSlashCommand(input: string, state: TUIState, buildCtx: () => SlashCommandContext): Promise; //# sourceMappingURL=command-dispatch.d.ts.map