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