import DIContainer from '../../lib/DIContainer/Container'; export default class NodeTester { private _container; private _file; private _forceMock; constructor(_container: DIContainer, _file: string, _forceMock?: boolean); testConnector(nodeName: string, prefix?: string, exceptedError?: unknown): Promise; testBatch(nodeName: string, prefix?: string, exceptedError?: unknown): Promise; testCustomNode(nodeName: string, prefix?: string, exceptedError?: unknown): Promise; testApplication(nodeName: string, prefix?: string, exceptedError?: unknown): Promise; private _testNode; }