import { Action, ActionSuccess } from "./Action"; /** @deprecated cannot be converted into JSON */ export declare class Custom implements Action { action: Function; name: string; __variant__: string; constructor({ name, action }: { name: string; action: Function; }); run(): Promise; }