import type { ClientContractType } from '../../../../../entities/index.ts'; import { type HttpClient, type IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types'; import type { ClientContractIncludedType } from './getClientContract'; export type IdentityDocumentFile = { base64: string; name: string; mime_type: string; }; export type SendClientContractInformationInput = { clientContractId: string; information: BodyInit; includes?: IncludeType; }; declare const sendClientContractInformation: (http: HttpClient) => { query: (input: SendClientContractInformationInput, options?: Record) => Promise>; }; export default sendClientContractInformation;