import { Command, CommandTree } from "../types/commands.js"; export type Cmd = { command: Command; path: string[]; }; export declare function listAllCommands(commands: CommandTree): Cmd[];