import { DomainObject } from "./domain-object"; import { Customer } from "./customer"; import { LedgerAccount } from "./ledger-account"; export declare class CustomerGroup extends DomainObject { GroupId?: string | undefined; Customers?: Customer[] | undefined; SalesLedgerId?: string | undefined; SalesLedger?: LedgerAccount | undefined; DebtorsControlLedgerId?: string | undefined; DebtorsControlLedger?: LedgerAccount | undefined; ConsumptionLedgerId?: string | undefined; ConsumptionLedger?: LedgerAccount | undefined; } //# sourceMappingURL=customer-group.d.ts.map