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