/**
* Get the position of the first character out of all strings inside an array
*
* @param {array} lines - An array of strings
*
* @return {number} - The position of the first character
*/exportfunctionGetFirstCharacterPosition(lines: any[]): number;