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