import type { Theme, ThemeVariant } from './types.js';
export declare const getTheme: () => {
    theme: Theme;
    themeVariant: ThemeVariant;
};
export declare const setTheme: (value: Theme, variant: ThemeVariant) => void;
/**
 * Allows the global configuration of the active theme.
 *
 * Usage:
 *  ```ts
 *  import { configureTheme } from 'igniteui-webcomponents';
 *
 *  configureTheme('material', 'light');
 *  ```
 */
export declare const configureTheme: (t: Theme, v?: ThemeVariant) => void;
