import { BaseEntity } from 'src/module/meta/entity/base-entity.entity'; declare class IcsMeetingDto extends BaseEntity { name: string; email: string; } export declare class CreateInviteDto { title: string; description?: string; startsAt: string; durationMinutes: number; meetingUrl?: string; location?: string; organizerName?: string; organizerEmail?: string; attendees: IcsMeetingDto[]; } export {};