declare enum ChromeOptions { "noheader" = 0, "nofooter" = 1, "noborders" = 2, "transparent" = 3, "noscrollbar" = 4 } declare enum ThemeOptions { "dark" = 0, "light" = 1 } declare enum AreaPoliteOptions { "polite" = 0, "assertive" = 1, "rude" = 2 } export declare class TimelineOptions { chrome?: string[] | ChromeOptions[]; width?: string | any; height?: string | any; tweetLimit?: number; borderColor?: string; theme?: ThemeOptions | string; ariaPolite?: string[] | AreaPoliteOptions[]; dnt?: boolean; } export {};