declare type ProxyType = "port" | "raw" | "server"; export declare function parseReq(url: string, // with base_path removed (url does start with /) remember_me?: string): { key: string; type: ProxyType; project_id: string; port_desc: string; internal_url: string | undefined; }; export {};