import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { getCalendars, getTimezones } from './GenericFunctions'; export declare class GoogleCalendar implements INodeType { description: INodeTypeDescription; methods: { listSearch: { getCalendars: typeof getCalendars; getTimezones: typeof getTimezones; }; loadOptions: { getConferenceSolutions(this: ILoadOptionsFunctions): Promise; getColors(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=GoogleCalendar.node.d.ts.map