import { ITriggerClassType, ITriggerContructorParams, ITriggerResult, IHelpers, AnyObject } from "actionsflow-core"; export default class Script implements ITriggerClassType { options: AnyObject; helpers: IHelpers; getItemKey(item: AnyObject): string; constructor({ helpers, options }: ITriggerContructorParams); run(): Promise; }