import { BasePeerPipeName } from '../../../../../base/daemon/process/model/constant'; declare class NodePipeName extends BasePeerPipeName { static readonly LAUNCH_CONNECT_NODE = "launch connect node"; static readonly LAUNCH_OBTAIN_RESOURCE = "launch obtain resource"; static readonly LAUNCH_REPORT_HEALTH = "launch report health"; } declare class UserPipeName extends BasePeerPipeName { static readonly LAUNCH_CONNECT_USER = "launch connect user"; static readonly HANDLE_CONNECT_USER = "handle connect user"; static readonly LAUNCH_OBTAIN_RESOURCE = "launch obtain resource"; static readonly HANDLE_OBTAIN_RESOURCE = "handle obtain resource"; static readonly LAUNCH_REPORT_RESOURCE_STAT = "launch report resource stat"; static readonly HANDLE_REPORT_RESOURCE_STAT = "handle report resource stat"; static readonly LAUNCH_REPORT_RESOURCE_STATS = "launch report resource stats"; static readonly HANDLE_REPORT_RESOURCE_STATS = "handle report resource stats"; } export { NodePipeName, UserPipeName };