import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; declare const getAllDocuments: (http: HttpClient) => { query: (contractId: string) => Promise>; }; export default getAllDocuments;