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