/** * getColumnWidths parses the provided line and returns the associated column widths. * * @param line The separator line to parse for the column widths. * @returns The column widths for the provided line, or an empty array if the line is invalid. */ export default function getColumnWidths(line: string): number[];