import type { HouseTruthLink } from '../../../../entities/index.ts'; import type { HttpClient } from '../../../../services/index.ts'; import type { ApiError, Response } from '../../../types/index.ts'; export type HouseTruthLinksInput = { houseId: string | number; privateToken?: string; }; declare const getHouseTruthLinks: (http: HttpClient) => { query: (input: HouseTruthLinksInput) => Promise>; }; export default getHouseTruthLinks;