import { FormFileData, HTTPClient } from '../../../../utils/http'; import { CommunityProvider, CommunityProviderContractDetailEntity, CommunityProviderContractEntity, CommunityProviderExtended, CreateCommunityProviderContractDTO, CreateCommunityProviderDTO, Document, UpdateCommunityProviderContractDTO, UpdateCommunityProviderDTO } from '../types'; export declare class CommunitiesProvidersAPI { private _httpClient; private _baseUrl; private _crud; constructor(_httpClient: HTTPClient, _baseUrl: string); create(data: CreateCommunityProviderDTO): Promise; update(id: string, data: UpdateCommunityProviderDTO): Promise; delete(id: string): Promise; find(query?: Record): Promise<(CommunityProvider | CommunityProviderExtended)[]>; contracts(id: string): CommunitiesProvidersContractsAPI; } export declare class CommunitiesProvidersContractsAPI { private readonly _httpClient; private readonly _baseUrl; private readonly _cud; constructor(_httpClient: HTTPClient, _baseUrl: string); get(id: string): Promise; create(data: CreateCommunityProviderContractDTO): Promise; update(id: string, data: UpdateCommunityProviderContractDTO): Promise; delete(id: string): Promise; addDocuments(id: string, documents: FormFileData[]): Promise; removeDocument(id: string, documentId: string): Promise; } //# sourceMappingURL=providers.d.ts.map