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