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