/**
 *
 * takes a command and removes the first keep lines from the output
 *
 * @param cmd the command, its stdout is then limited
 * @param removeFirstN how many lines to remove at the start of the command
 * @returns
 */
export declare const removeFirstLinesFromCommandOutput: (cmd: string, removeFirstN: number) => string;