import { Listr } from "listr2";
import type { FunctionOptions } from "./command";
export declare const tasks: (options: FunctionOptions) => Listr<any, "default", "simple">;
export declare const createBackgroundFunctionTask: ({ commandPaths, existingFiles, name, }: {
    commandPaths: Record<string, string>;
    existingFiles: "OVERWRITE" | "FAIL";
    name: string;
}) => void;
