export declare const NAME = "name"; export declare const TOPOLOGY = "topology"; export default class WebhookSubscription { private _name; private _node; private _topology; private _parameters; constructor(_name: string, _node: string, _topology: string, _parameters?: { [key: string]: string; }); getName(): string; getNode(): string; getTopology(): string; getParameters(): { [key: string]: string; }; }