import { BaseDto } from '../../base/base.dto'; import { IntegrationEntity } from '../..'; import { INTEGRATION_EVENT_TYPE } from '../enum'; import { IntegrationEventConfigDatabase, IntegrationEventConfigWebhook } from '../integration-events.entity'; export declare class IntegrationEventBase extends BaseDto { title?: string; type?: INTEGRATION_EVENT_TYPE; config?: IntegrationEventConfigWebhook | IntegrationEventConfigDatabase; isEnabled?: boolean; integrations?: IntegrationEntity[]; }