import { Command } from './elements/Command'; import { CommandPath } from './elements/CommandPath'; declare const getCommandsByPath: ({ rootCommand, commandPath }: { rootCommand: Command; commandPath: CommandPath; }) => Command[]; export { getCommandsByPath };