import ISerializable from "../ISerializable"; import IPlugin from "../PluginSystem/IPlugin"; export default class Workflow implements ISerializable { pluginExports: any; meta: any; constructor(plugin: IPlugin); get name(): any; get displayName(): any; get version(): any; get description(): any; get tags(): any; get exports(): any; private exitWorkflow; run(config?: any): Promise; toJson(): Promise; } //# sourceMappingURL=Workflow.d.ts.map