import { Errors } from "io-ts"; export declare enum CSVError { InvalidRowColumns = 0, InvalidNumber = 1, InvalidString = 2, InvalidDate = 3, InvalidDateTime = 4, InvalidRateType = 5, InvalidDemographics = 6, InvalidNetwork = 7, InvalidStartDate = 8, InvalidDuration = 9, InvalidValidUntil = 10, InvalidWeeklyRate = 11 } export declare type Cell = [string, number?]; export declare type RowErrors = Map; declare type RowErrorFormatter = (cells?: Cell[]) => string[]; export declare const ErrorMessages: Record; export declare function errorReporter(errors: Errors): RowErrors; export declare function addErrors(e1: RowErrors, e2: RowErrors): RowErrors; export declare function getErrorMessages(errors: RowErrors): string[]; export {};