import { AbstractProcessPipe } from '../../../../../base/daemon/process/flow/pipe'; import * as flows from '../flow'; declare class LaunchNotifyExceptionPipe extends AbstractProcessPipe { process(): Promise; protected _notifyException(): Promise; } type LaunchNotifyExceptionContent = flows.LaunchNotifyExceptionContent; declare class HandleNotifyExceptionPipe extends AbstractProcessPipe { process(): Promise; protected _notifyException(): Promise; } type HandleNotifyExceptionContent = flows.HandleNotifyExceptionContent; export { LaunchNotifyExceptionPipe, LaunchNotifyExceptionContent, HandleNotifyExceptionPipe, HandleNotifyExceptionContent };