import { WorkflowResource } from "./resource"; export declare class WorkflowIndex { url: string; name: string; names: Array; workflowsPath: string; shortcut: string; private _workflows; constructor(url: string, workflowsPath: string, workflowURLs: Array); getWorkflow(name: string): WorkflowResource; getAllWorkflows(): Array; getInstalledWorkflows(): Array; getWorkflows(names: Array): Array; static fromURL(url: string, workflowsPath: string): Promise; static fromGitHubURL(url: string, workflowsPath: string): Promise; static fromFileURL(url: string, workflowsPath: string): Promise; }