import { Lists } from './List'; import { ApiV3 } from './lib/ApiV3'; import { CreateListResponse, GetListsResponse, ListUpdateRequest, ListUpdateResponse } from './Types/Lists'; import { Identifiers } from './Types'; import { ODPClient } from './index'; export declare class ListsApi implements Lists { private client; constructor(client: ODPClient); createList: (listName: string) => Promise>; getLists: () => Promise>; subscribe: (listId: string, identifiers: Identifiers | Identifiers[]) => Promise>; unsubscribe: (listId: string, identifiers: Identifiers | Identifiers[]) => Promise>; updateSubscriptions: (listId: string, updates: ListUpdateRequest[]) => Promise>; } //# sourceMappingURL=ListsApi.d.ts.map