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