import { DomainObject } from "./domain-object"; import { BarcodeSegmentType } from "./barcode-segment-type"; export declare class BarcodeSegment extends DomainObject { SegmentId?: string | undefined; TagName?: string | undefined; Length?: number | undefined; Value?: string | undefined; SegmentTypeId?: string | undefined; SegmentType?: BarcodeSegmentType | undefined; ConfigId?: string | undefined; } //# sourceMappingURL=barcode-segment.d.ts.map