/**
 * Finds an open port and creates an url on which you can receive the auth token.
 * @returns a valid url with an unused port to retrieve the auth token.
 * In case of cloud based development environment @returns the public url of the
 * dev environment prefixed with the applicable port.
 */
export declare function getDtAppCliCallbackUrl(port: number, environmentUrl: string): Promise<string>;
