import { DomainObject } from "./domain-object"; import { AccrualAccountingType, SalesOrderType } from "./all.enum"; import { StorageAccountImage } from "./storage-account-image"; import { GatewayPrinter } from "./gateway-printer"; import { ShipmentVendor } from "./shipment-vendor"; import { PayrollVendor } from "./payroll-vendor"; import { InventLocation } from "./invent-location"; import { Currency } from "./currency"; export declare class CompanyInfo extends DomainObject { Key?: string | undefined; Phone?: string | undefined; Email?: string | undefined; Street?: string | undefined; Street2?: string | undefined; ZipCode?: string | undefined; City?: string | undefined; State?: string | undefined; Country?: string | undefined; CVR?: string | undefined; EAN?: string | undefined; GlnNumber?: string | undefined; EORINumber?: string | undefined; LogoImageId?: string | undefined; LogoImage?: StorageAccountImage | undefined; CurrencyId?: string | undefined; Currency?: Currency | undefined; LabelPrinterId?: string | undefined; LabelPrinter?: GatewayPrinter | undefined; DocumentPrinterId?: string | undefined; DocumentPrinter?: GatewayPrinter | undefined; ShipmentVendorId?: string | undefined; ShipmentVendor?: ShipmentVendor | undefined; VatPercent_Default?: number | undefined; SalesOrderType_Default?: SalesOrderType | undefined; PayrollVendorId?: string | undefined; PayrollVendor?: PayrollVendor | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; AccrualAccountingType?: AccrualAccountingType | undefined; } //# sourceMappingURL=company-info.d.ts.map