import { Command } from "./definitions"; export declare type ParsedOptions = { options: any; remainingPieces: string[]; }; /** * Returns an object with any options that were in the command set to true, * all others set to false. * * Returns false if an invalid option was detected * @param commandPieces */ export declare function parseOptions(command: Command, commandPieces: string[]): ParsedOptions | false;