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