import { NotificationType } from '../enums/notification-type.enum';
export declare class CreateConfigDto {
    event_type: NotificationType;
    role_id: number;
    description?: string;
    is_active?: boolean;
}
export declare class UpdateConfigDto {
    is_active?: boolean;
    description?: string;
}
