import type { FilterType, HttpClient } from '../../../../services/index.ts'; import type { ApiError, Response } from '../../../types/index.ts'; export type HousePhotoInput = { filter?: FilterType; houseId: string | number; pagination?: { per: string; page: string; }; privateToken?: string; }; declare const getPhotosByHouseId: (http: HttpClient) => { query: (input: HousePhotoInput) => Promise>; }; export default getPhotosByHouseId;