import { AxiosRequestConfig } from 'axios'; /** * @param id - The id of the list whose details are to be fetched. * * @public */ export declare function 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. */ export declare function 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. * * @public */ export declare function tweets(id: string, count?: number, cursor?: string): AxiosRequestConfig;