interface Field {
  name: string;
  width: number;
  position: number;
  required: boolean;
  type: string;
  value: string | number;
  number?: boolean;
  blank?: boolean;
}

interface BatchControls {
  recordTypeCode: Field;
  serviceClassCode: Field;
  addendaCount: Field;
  entryHash: Field;
  totalDebit: Field;
  totalCredit: Field;
  companyIdentification: Field;
  messageAuthenticationCode: Field;
  reserved: Field;
  originatingDFI: Field;
  batchNumber: Field;
}

declare const BatchControls: BatchControls;

export default BatchControls;
