import { Command } from "./definitions"; /** * Get the parameters object from the remainingPieces of the command string. * * Command pieces should only have remaining parameters at the point that * this function is called. * @param command * @param commandPieces */ export declare function parseParameters(command: Command, commandPieces: string[]): any | false;