import { IList } from '../../types/data/List'; import { IList as IRawList } from '../../types/raw/base/List'; /** * The details of a single Twitter List. * * @public */ export declare class List implements IList { createdAt: string; createdBy: string; description?: string; id: string; memberCount: number; name: string; subscriberCount: number; /** * @param list - The raw list details. */ constructor(list: IRawList); /** * @returns A serializable JSON representation of `this` object. */ toJSON(): IList; }