import { GoogleCalendar } from '../../../shared/entities/stock'; export type Entity = GoogleCalendar; export declare const Route = "google_calendar"; export declare const UpperName = "GoogleCalendar"; export declare const LowerName: string; export interface IListEventsInRangeRequest { calendarId: string; from: string; to: string; } export interface IListEventsInRangeResponse { id: string; title: string; start: string; end?: string; allDay: boolean; url?: string; extendedProps: { description: string | null; location: string | null; colorId: string | null; }; } export interface IRepository { find(): Promise; listEventsInRange(params: IListEventsInRangeRequest): Promise; }