import { RundeckClient } from '@rundeck/client'; import { RootStore } from './RootStore'; import { JobWorkflow } from '../utilities/JobWorkflow'; export declare class WorkflowStore { readonly root: RootStore; readonly client: RundeckClient; workflows: Map; constructor(root: RootStore, client: RundeckClient); get(jobId: string): Promise; private fetch; }