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 handleNewCmd(channel: string, adapter: PlatformAdapter, opts?: { skipHook?: boolean; }, threadAnchorId?: string | null): Promise; export declare function createResumeHandler(router?: CommandActionRouter): (channel: string, adapter: PlatformAdapter, trimmedMessage: string) => Promise; /** @deprecated Use createResumeHandler() instead. */ export declare function handleResumeCmd(channel: string, adapter: PlatformAdapter, trimmedMessage: string): Promise;