import { HTTPClient } from '../../../../utils/http';
import { CreatePersonPaymentMethodDTO, PersonPaymentMethod, UpdatePersonPaymentMethodDTO } from '../types';
export declare class ContactsPersonsPaymentMethodsAPI {
    private _crud;
    constructor(httpClient: HTTPClient, baseUrl: string, paymentMethodId?: string);
    add(data: CreatePersonPaymentMethodDTO): Promise<PersonPaymentMethod>;
    update(id: string, data: UpdatePersonPaymentMethodDTO): Promise<PersonPaymentMethod>;
    delete(id?: string): Promise<void>;
    find(): Promise<PersonPaymentMethod[]>;
}
//# sourceMappingURL=payment-methods.d.ts.map