export interface Command { command: string; options: ReadonlyArray; } export declare const parse: (data: string) => { [i: string]: Command; };