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 handleModeCmd(channel: string, adapter: PlatformAdapter): Promise; export declare function handleBackendCmd(channel: string, adapter: PlatformAdapter, trimmedMessage: string): Promise; export declare function handleModelCmd(channel: string, adapter: PlatformAdapter, trimmedMessage: string): Promise; export declare function createProfileHandler(router?: CommandActionRouter): (channel: string, adapter: PlatformAdapter, trimmedMessage: string) => Promise; /** @deprecated Use createProfileHandler() instead. */ export declare function handleProfileCmd(channel: string, adapter: PlatformAdapter, trimmedMessage: string): Promise; export declare function handleSkillsCmd(channel: string, adapter: PlatformAdapter): Promise; export declare function createAgentHandler(router?: CommandActionRouter): (channel: string, adapter: PlatformAdapter, trimmedMessage: string) => Promise; /** @deprecated Use createAgentHandler() instead. */ export declare function handleAgentCmd(channel: string, adapter: PlatformAdapter, trimmedMessage: string): Promise;