import { AxiosInstance } from "axios"; import { ContactList, ContactListOptions } from "../../../types/api/contactlist"; export default class ContactListsApi { private client; private contactListsURL; constructor(client: AxiosInstance, accountId: number); /** * Get all contact lists. */ getList(): Promise; /** * Get a contact list by `listId`. */ get(listId: number): Promise; /** * Creates a new contact list. */ create(data: ContactListOptions): Promise; /** * Updates an existing contact list by `listId`. */ update(listId: number, data: ContactListOptions): Promise; /** * Deletes a contact list by ID. */ delete(listId: number): Promise>; } //# sourceMappingURL=ContactLists.d.ts.map