import type { AbstractConstructor, Mixin, TwitterClientBase } from './twitter-client-base.js'; import type { TimelineFetchOptions, TimelinePaginationOptions } from './twitter-client-timelines.js'; import type { ListsResult, SearchResult } from './twitter-client-types.js'; export interface TwitterClientListMethods { getOwnedLists(count?: number): Promise; getListMemberships(count?: number): Promise; getListTimeline(listId: string, count?: number, options?: TimelineFetchOptions): Promise; getAllListTimeline(listId: string, options?: TimelinePaginationOptions): Promise; } export declare function withLists>(Base: TBase): Mixin; //# sourceMappingURL=twitter-client-lists.d.ts.map