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