import { isoly } from "isoly"; import { Identifier } from "../../Settlement/Identifier"; import { Totals } from "../../Settlement/Totals"; import { Base } from "../Base"; export interface NegativeAmount extends Base { type: "negative-amount"; resource: Identifier; value: number; currency: isoly.Currency; } export declare namespace NegativeAmount { const type: import("isly/dist/cjs/object").IslyObject; function create(resource: Identifier, totals: Totals): NegativeAmount[]; }