export declare class MessageSubscriber {
    private _topic;
    private _modelPath;
    private _topicType;
    private _fieldName;
    private _targetTag;
    constructor({ topic, modelPath, topicType, fieldName, targetTag, }: {
        topic: string;
        modelPath: string;
        topicType: string;
        fieldName?: string;
        targetTag: string;
    });
    get topic(): string;
    get topicType(): string;
    get modelPath(): string;
    get fieldName(): string;
    get targetTag(): string;
    toString(): string;
}
//# sourceMappingURL=messagesubscriber.d.ts.map