type LocationType = { title: string; }[]; type DateInformaitonType = { startDayOfWeek: string; startMonth: string; startDay: string; startTime: string; endDayOfWeek: string; endMonth: string; endDay: string; endTime: string; }; type EventType = DateInformaitonType & { location: LocationType; }; export type TypeMetaDisplay = EventType & { isThemeDark?: boolean; showTime?: boolean; }; export declare const createEventMeta: (props: TypeMetaDisplay) => import('../../../builder/dist/index.d.ts').ElementModel; export {}; //# sourceMappingURL=meta.d.ts.map