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