import { AxiosRequestConfig } from 'axios'; /** * Collection of requests related to lists. * * @public */ export declare class ListRequests { /** * @param id - The id of the list whose details are to be fetched. */ static details(id: string): AxiosRequestConfig; /** * @param id - The id of the list whose members are to be fetched. * @param count - The number of members to fetch. Must be \<= 100. * @param cursor - The cursor to the batch of members to fetch. */ static members(id: string, count?: number, cursor?: string): AxiosRequestConfig; /** * @param id - The id of the list whose tweets are to be fetched. * @param count - The number of tweets to fetch. Must be \<= 100. * @param cursor - The cursor to the batch of tweets to fetch. */ static tweets(id: string, count?: number, cursor?: string): AxiosRequestConfig; }