import { Agenda } from './Agenda.mjs'; import { CalendarItemType } from './CalendarItemType.mjs'; /** * * * DTO containing publicly accessible agendas and their associated calendar item types, * used for public appointment booking. */ export declare class PublicAgendasAndCalendarItemTypes { /** * * The list of publicly available agendas. */ agendas: Array; /** * * The list of calendar item types associated with the public agendas. */ calendarItemTypes: Array; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): PublicAgendasAndCalendarItemTypes; }