import { DomainObject } from "./domain-object"; import { Customer } from "./customer"; import { Vendor } from "./vendor"; import { BarcodeConfigType } from "./barcode-config-type"; import { BarcodeSegment } from "./barcode-segment"; export declare class BarcodeConfig extends DomainObject { ConfigId?: string | undefined; ConfigTypeId?: string | undefined; ConfigType?: BarcodeConfigType | undefined; CustomerId?: string | undefined; Customer?: Customer | undefined; VendorId?: string | undefined; Vendor?: Vendor | undefined; StartTag?: string | undefined; EndTag?: string | undefined; Segments?: BarcodeSegment[] | undefined; } //# sourceMappingURL=barcode-config.d.ts.map