import { TxMountPoint } from './tx-mountpoint'; import { TxRouteServiceExpress } from './tx-route-service-express'; import { TxRouteServiceConfig } from "./tx-route-service-config"; export declare class TxRoutePoint implements TxMountPoint { private _name; type: string; protected config: TxRouteServiceConfig; private _tasks; private _undos; constructor(_name: string | Symbol, config: TxRouteServiceConfig); init(config: TxRouteServiceConfig): void; adjust(from: TxRoutePoint): this; readonly name: string; tasks(): TxRouteServiceExpress; reply(): TxRouteServiceExpress; undos(): TxRouteServiceExpress; getConfig(): TxRouteServiceConfig; setFrom(from: any): void; }