import type { CalendarImport, CalendarImportPayload } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type ModifyCalendarImportInput = { houseId: string; payload: CalendarImportPayload; }; declare const modifyCalendarImport: (http: HttpClient) => { query: (input: ModifyCalendarImportInput) => Promise>; }; export default modifyCalendarImport;