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