import { TypeDBTransaction } from "../api/connection/TypeDBTransaction"; import { LogicManager } from "../api/logic/LogicManager"; import { Rule } from "../api/logic/Rule"; import { Stream } from "../common/util/Stream"; export declare class LogicManagerImpl implements LogicManager { private _transaction; constructor(transaction: TypeDBTransaction.Extended); getRule(label: string): Promise; getRules(): Stream; putRule(label: string, when: string, then: string): Promise; private execute; private stream; }