interface Field {
  name: string;
  width: number;
  position: number;
  required: boolean;
  type: string;
  value: string | number;
  blank?: boolean;
}

interface BatchHeaders {
  recordTypeCode: Field;
  serviceClassCode: Field;
  companyName: Field;
  companyDiscretionaryData: Field;
  companyIdentification: Field;
  standardEntryClassCode: Field;
  companyEntryDescription: Field;
  companyDescriptiveDate: Field;
  effectiveEntryDate: Field;
  settlementDate: Field;
  originatorStatusCode: Field;
  originatingDFI: Field;
  batchNumber: Field;
}

declare const BatchHeaders: BatchHeaders;

export default BatchHeaders;
