import type { Command, ParserResult } from "./types"; export declare function parseInput(input: string): ParserResult; export declare function ranks(commands: Command[], input: string): Command[] | null;