GuildDropsGroupByOutputType: {
    _avg: GuildDropsAvgAggregateOutputType | null;
    _count: GuildDropsCountAggregateOutputType | null;
    _max: GuildDropsMaxAggregateOutputType | null;
    _min: GuildDropsMinAggregateOutputType | null;
    _sum: GuildDropsSumAggregateOutputType | null;
    createdAt: Date;
    dbId: string;
    guildId: string;
    kickChannelId: string | null;
    kickDeliveryMode: NotificationDeliveryEnum;
    kickEnabled: boolean;
    kickLiveNotificationChannelId: string | null;
    kickLiveNotificationRoleId: string | null;
    kickLiveNotifications: boolean;
    kickRoleId: string | null;
    kickScheduledHours: number[];
    kickScheduledWeekdays: number[];
    kickWindowEndHour: number | null;
    kickWindowStartHour: number | null;
    twitchChannelId: string | null;
    twitchDeliveryMode: NotificationDeliveryEnum;
    twitchEnabled: boolean;
    twitchLiveNotificationChannelId: string | null;
    twitchLiveNotificationRoleId: string | null;
    twitchLiveNotifications: boolean;
    twitchRoleId: string | null;
    twitchScheduledHours: number[];
    twitchScheduledWeekdays: number[];
    twitchWindowEndHour: number | null;
    twitchWindowStartHour: number | null;
    updatedAt: Date;
}