import type { PlatformAdapter } from '../../../platform/index.js'; import type { CommandResult } from './command-context.js'; import type { CommandActionRouter } from '../../interactions/command-action-router.js'; export declare function createStatusHandler(getExecutionStatusReport: (() => string) | null, router?: CommandActionRouter): (channel: string, adapter: PlatformAdapter) => Promise; export declare function createHelpHandler(router?: CommandActionRouter): (channel: string, adapter: PlatformAdapter) => Promise; /** @deprecated Use createHelpHandler() instead. Kept for backward compat in tests. */ export declare function handleHelp(channel: string, adapter: PlatformAdapter): Promise;