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