import { IList as IRawList } from 'rettiwt-core'; /** * The details of a single Twitter List. * * @public */ export declare class List { /** The date and time of creation of the list, int UTC string format. */ createdAt: string; /** The rest id of the user who created the list. */ createdBy: string; /** The list description. */ description?: string; /** The rest id of the list. */ id: string; /** The number of memeber of the list. */ memberCount: number; /** The name of the list. */ name: string; /** The number of subscribers of the list. */ subscriberCount: number; /** * @param list - The raw list details. */ constructor(list: IRawList); }