import { CaseLogInteractionEventDTO } from '.';
export declare class CaseLogDTO {
    constructor();
    id?: string;
    issueId: string;
    usersFullName?: string;
    usersNickname?: string;
    usersCertifications?: string[];
    diffLog?: string;
    interactionEvent?: CaseLogInteractionEventDTO;
    notes?: string;
    created?: string;
    eventCategory?: string;
    eventCategoryLabel?: string;
    eventType?: string;
    eventTypeLabel?: string;
    fromIssueSave?: boolean;
    highlighted?: boolean;
    highlightmap?: string;
}
export declare function caseLogFields(lang: string): {
    index: number;
    name: string;
    label: string;
    description: string;
    isRequired: boolean;
    dataType: string;
    display: boolean;
    isCustomField: boolean;
    isDependent: boolean;
}[];
