import type { HttpClient } from '../../../../../../services/index.ts'; export type GetHubspotContractPdfInput = { contractVersion: 'client' | 'owner'; contractId: string; }; declare const getHubspotContractPdf: (http: HttpClient) => { query: (input: GetHubspotContractPdfInput) => Promise; }; export default getHubspotContractPdf;