import { WorkflowResource } from "./workflow/resource"; import { WorkflowIndex } from "./workflow/workflowIndex"; export declare function chooseIndex(url: string | undefined, ref: string, workflowsPath: string): Promise; export declare function createWorkflowsDir(path: string): Promise; export declare function selectWorkflows(workflowIndex: WorkflowIndex): Promise>; export declare function confirmApply(): Promise; declare type TConfirmResult = "apply" | "rerun_noforce" | "rerun_force" | "rerun_nodiff" | "rerun_diff" | "discard"; export declare function confirmRerunApply(forceUpdate: boolean, showDiff: boolean, hasChanges: boolean, hasForceChanges: boolean): Promise; export {};