import { AxiosInstance } from "axios"; import { ContactList, ContactListOptions, ContactListsListOptions } from "../../../types/api/contactlist"; export default class ContactListsApi { private client; private contactListsURL; constructor(client: AxiosInstance, accountId: number); /** * Get all contact lists. Optionally filter by name via a case-insensitive * prefix match with `search`. */ getList(options?: ContactListsListOptions): 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