import { Transaction as modelTransaction } from "../Transaction"; import { Base } from "./Base"; export interface Transaction extends Base { entityType: "transaction"; entity: string; organization: string; account: string; isError?: true; } export declare namespace Transaction { const create: Base.Create; const addSender: (sender: (backup: Transaction) => any | Promise) => (args_0: modelTransaction & { state?: any; }, args_1: "created" | "cancelled" | "updated" | "removed" | "inactivated", args_2?: { isError?: true; meta?: any; } | undefined) => ReturnType<(backup: Transaction) => any | Promise>; }