/**
 *	@fileOverview Converts column letter to number
 *	@author Flambino
 *	@see https://codereview.stackexchange.com/questions/90112/a1notation-conversion-to-row-column-index
 *	@param {string} col
 *
 *	@return {number}
 */
export default function (col: string): number;
