import { InteractionEventBodyDTO, InteractionEventRefsDTO, InteractionEventCategoryDTO, InteractionEventTypeDTO } from '.';
export declare class CaseLogInteractionEventDTO {
    body?: InteractionEventBodyDTO;
    refs?: InteractionEventRefsDTO;
    type?: InteractionEventTypeDTO;
    logId?: string;
    created?: string;
    category?: InteractionEventCategoryDTO;
}
