import {
  IndicatorSectionValues,
  IdentificationSectionValues,
  LocalUseSectionValues,
  GridDefinitionSectionValues,
  ProductDefinitionSectionValues,
  DataRepresentationSectionValues,
  BitMapSectionValues,
  DataSectionValues,
  EndSectionValues
} from '../sections'

import {
  IndicatorSection,
  IdentificationSection,
  LocalUseSection,
  GridDefinitionSection,
  ProductDefinitionSection,
  DataRepresentationSection,
  BitMapSection,
  DataSection,
  EndSection
} from '../sections'

export type SectionValues = [
  IndicatorSectionValues,
  IdentificationSectionValues,
  LocalUseSectionValues,
  GridDefinitionSectionValues,
  ProductDefinitionSectionValues,
  DataRepresentationSectionValues,
  BitMapSectionValues,
  DataSectionValues,
  EndSectionValues
]

export type Sections = [
  IndicatorSection,
  IdentificationSection,
  LocalUseSection,
  GridDefinitionSection,
  ProductDefinitionSection,
  DataRepresentationSection,
  BitMapSection,
  DataSection,
  EndSection
]
