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