import { INTEGRATION_EVENT_TYPE } from '../enum'; import { IntegrationEventConfigWebhook, IntegrationEventConfigDatabase } from '../integration-events.entity'; import { IntegrationEventBase } from './base.dto'; export declare class SubmitIntegrationEventDto extends IntegrationEventBase { title: string; type: INTEGRATION_EVENT_TYPE; config: IntegrationEventConfigWebhook | IntegrationEventConfigDatabase; isEnabled: boolean; } export declare class CreateIntegrationEventDto extends IntegrationEventBase { } export declare class UpdateIntegrationEventDto extends IntegrationEventBase { }