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 createTasksHandler(router?: CommandActionRouter): (channel: string, adapter: PlatformAdapter, trimmedMessage: string) => Promise; /** @deprecated Use createTasksHandler() instead. */ export declare function handleTasksCmd(channel: string, adapter: PlatformAdapter, trimmedMessage: string): Promise;