import { TickerOptions } from './types'; declare class Ticker { #private; constructor(options: TickerOptions); /** * Changes the theme of the ticker * @param themeName {string} The name of the theme to apply */ changeTheme(themeName: string): void; /** * Pauses or plays the animation of the ticker */ toggleAnimation(): void; } export { Ticker };