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