import { DomainObject } from "./domain-object"; import { Location } from "./location"; import { LedgerAccount } from "./ledger-account"; import { BankAccount } from "./bank-account"; export declare class POSTerminal extends DomainObject { TerminalId?: string | undefined; DeviceId?: string | undefined; Note?: string | undefined; LocationId?: string | undefined; Location?: Location | undefined; LedgerAccountId?: string | undefined; LedgerAccount?: LedgerAccount | undefined; BankAccountId?: string | undefined; BankAccount?: BankAccount | undefined; } //# sourceMappingURL=pos-terminal.d.ts.map