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