import { CustomFormatsT } from "./t"; /** * Default ISO 8583 field definitions. Can overridden by passing the custom formats to the Main's constructor * * * * * @module Formats * @example { '0': { ContentType: 'n', Label: 'Message Type Indicator', LenType: 'fixed', MaxLen: 4 }, '1': { ContentType: 'b', Label: 'Bitmap', LenType: 'fixed', MaxLen: 8 } } */ declare const Formats: CustomFormatsT; export default Formats;