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 AddCalendarImportInput = { houseId: string; payload: CalendarImportPayload; }; declare const addCalendarImport: (http: HttpClient) => { query: (input: AddCalendarImportInput) => Promise>; }; export default addCalendarImport;