import * as flows from '../../../../../tracker/daemon/base/process/flow'; import { AbstractProcessPipe } from '../base/pipe'; declare class LaunchJoinSwarmPipe extends AbstractProcessPipe { process(): Promise; protected _joinSwarm(): Promise; } type LaunchJoinSwarmContent = flows.LaunchJoinSwarmContent; declare class LaunchReportSwarmStatsPipe extends AbstractProcessPipe { process(): Promise; protected _reportSwarmStats(): Promise; } type LaunchReportSwarmStatsContent = flows.LaunchReportSwarmStatsContent; declare class LaunchObtainSwarmUsersPipe extends AbstractProcessPipe { process(): Promise; protected _obtainSwarmUsers(): Promise; } type LaunchObtainSwarmUsersContent = flows.LaunchObtainSwarmUsersContent; type LaunchObtainSwarmUsersOutcome = flows.LaunchObtainSwarmUsersOutcome; declare class LaunchLeaveSwarmPipe extends AbstractProcessPipe { process(): Promise; protected _leaveSwarm(): Promise; } type LaunchLeaveSwarmContent = flows.LaunchLeaveSwarmContent; export { LaunchJoinSwarmPipe, LaunchJoinSwarmContent, LaunchReportSwarmStatsPipe, LaunchReportSwarmStatsContent, LaunchObtainSwarmUsersPipe, LaunchObtainSwarmUsersContent, LaunchObtainSwarmUsersOutcome, LaunchLeaveSwarmPipe, LaunchLeaveSwarmContent };