export declare type StartCommandArgs = {
    config?: string;
    forceClone?: boolean;
    load?: string;
};
export declare function handleStartCommand(args: StartCommandArgs): Promise<{
    needHelp: boolean;
}>;
export declare function startHelp(): string;
