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<EmailNotificationWithStreamConditions>);
}
export default EmailNotificationWithStreamConditions;
