import { InventorySection } from './InventorySection'; import { PointOfSaleSurveySection } from './PointOfSaleSurveySection'; import { PriceSurveySection } from './PriceSurveySection'; import { ReplenishmentSection } from './ReplenishmentSection'; export type SectionUnion = ReplenishmentSection | InventorySection | PriceSurveySection | PointOfSaleSurveySection;