import type { Client } from "soap";
import type { Statement } from "../../../common/types";
import type { Contact, ContactPage } from "./contact.type";
import type { ContactServiceOperations } from "./contactService.interface";
export declare class ContactService implements ContactServiceOperations {
    private _client;
    constructor(client: Client);
    createContacts(contacts: Partial<Contact>[]): Promise<Contact[]>;
    getContactsByStatement(statement: Statement): Promise<ContactPage>;
    updateContacts(contacts: Contact[]): Promise<Contact[]>;
}
//# sourceMappingURL=contact.service.d.ts.map