import { Commands, Command } from "./definitions"; export declare type CommandAndPieces = { command: Command; remainingPieces: string[]; }; /** * Return the Command object the command string specifies. * Returns false if the command string did not have a valid command; * @param promptResponse */ export declare function findPromptedCommand(promptResponse: string[], commands: Commands): CommandAndPieces | false;