import { BaseDto } from '../../base/base.dto'; import { StreetAddress, UserEntity } from '../..'; import { EVENT_STATUS } from '../event.entity'; export declare class CalendarEventBaseDto extends BaseDto { status?: EVENT_STATUS; dtstart?: Date; dtend?: Date; summary?: string; description?: string; address?: StreetAddress; participants?: UserEntity[]; }