/**
* DevExtreme (viz/themes.d.ts)
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/


/** Gets the current theme's name. */
export function currentTheme(): string;

/** Changes the current theme for all data visualization widgets on the page. The color scheme is defined separately. */
export function currentTheme(platform: string, colorScheme: string): void;

/** Changes the current theme for all data visualization widgets on the page. */
export function currentTheme(theme: string): void;

/** Gets a predefined or registered theme's settings. */
export function getTheme(theme: string): any;

/** Refreshes the current theme and palette in all data visualization widgets on the page. */
export function refreshTheme(): void;

/** Registers a new theme based on the existing one. */
export function registerTheme(customTheme: any, baseTheme: string): void;