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