import { BLACKLIST_ENTRY_TYPE, OrganizationEntity, UserEntity } from '../..'; import { BaseClass } from './base.dto'; export declare class SubmitNewBlacklistDto extends BaseClass { type: BLACKLIST_ENTRY_TYPE; ip: string; } export declare class CreateBlacklistEntryDto extends SubmitNewBlacklistDto { type: BLACKLIST_ENTRY_TYPE; ip: string; organization: OrganizationEntity; createdByUser: UserEntity; } export declare class UpdateBlacklistEntryDto { hits: number; }