import { AlgoOperator } from "../lib/algo-operator"; import { AlgobRuntimeEnv } from "../types"; export interface TaskArgs { fileNames: string[]; force: boolean; } export declare function loadFilenames(directory: string, taskType?: string): string[]; export declare function executeDeployTask({ fileNames, force }: TaskArgs, runtimeEnv: AlgobRuntimeEnv, algoOp: AlgoOperator): Promise; export default function (): void;