/** * @description Checks if the row is valid. If not, throws an error. * @param row LDT row * @param rowIndex index of the row */ declare const isValidRow: (row: string, rowIndex: number) => boolean; export default isValidRow;