import AbstractCondition from './AbstractCondition'; import WebhookNotification from './WebhookNotification'; /** * @export * @class WebhookNotificationWithStreamConditions */ export declare class WebhookNotificationWithStreamConditions extends WebhookNotification { /** * @type {AbstractCondition} * @memberof WebhookNotificationWithStreamConditions */ conditions?: AbstractCondition; constructor(obj?: Partial); } export default WebhookNotificationWithStreamConditions;