/**
 * Cleans the param of any leading or trailing spaces and non-string values
 * @param secondLine
 * @returns an array containing all trimmed, non-empty strings in secondLine
 */
export declare const cleanSecondLine: (secondLine: string | string[] | null) => Array<string>;
