import type { EnvironmentBuilder } from '../types'; export interface UI { host: string; port: string; } export declare const defaults: { UI_HOST: string; UI_PORT: string; }; export declare function GetUI(env: EnvironmentBuilder): UI;