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