export function prepare(options?: {}): Promise<{
    root: Root;
    options: {
        verbose: boolean;
        dry: boolean;
        root: string;
    };
    args: string[];
}>;
import { Root } from "./module.mjs";
