import type { Contract } from '../../../../../../entities/index.ts'; import type { FilterType, HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type SignatoryOwnerContractInput = { houseId: string; filters: FilterType; }; declare const getSignatoryOwnerContracts: (http: HttpClient) => { query: (input: SignatoryOwnerContractInput) => Promise[], undefined, ApiError>>; }; export default getSignatoryOwnerContracts;