import { IDataObject } from 'n8n-workflow';
export interface INextcloudCalendarConfig {
    hideEventExport?: boolean;
    sendInvitations?: boolean;
    enableNotifications?: boolean;
    enablePushNotifications?: boolean;
    forceEventAlarmType?: 'EMAIL' | 'DISPLAY';
}
export declare function getNextcloudHeaders(): {
    [key: string]: string;
};
export declare function formatNextcloudEvent(eventData: IDataObject): IDataObject;
export declare function parseNextcloudResponse(response: IDataObject): IDataObject;
export declare function getNextcloudCalendarConfig(config?: IDataObject): INextcloudCalendarConfig;
