import { LoginType } from './login'; export declare enum InstanceType { CLOUD = "cloud", ONPREM = "onprem", LOCALHOST = "localhost" } export declare const whichUrlPrompt: () => Promise; export declare const whichSubdomainPrompt: () => Promise; export declare const whichInstancePrompt: (loginType: LoginType) => Promise<{ instanceType: InstanceType; url: string; }>; export declare const shouldLogin: () => Promise;