import { Command } from "commander";
export declare function configureInitCommand(program: Command): Command;
export declare function initCommand(dir: string, options: unknown): Promise<void | undefined>;
export interface InstallPackagesOutputter {
    startSDK: () => void;
    installedSDK: () => void;
    startBuild: () => void;
    installedBuild: () => void;
    stoppedWithError: () => void;
}
export declare function installPackages(projectDir: string, tag: string, outputter?: InstallPackagesOutputter): Promise<void>;
