import { AdaptableTheme } from '../../../types';
import { IAdaptableService } from './IAdaptableService';
export interface IThemeService extends IAdaptableService {
    getDOMPrefferedColorScheme(): 'dark' | 'light';
    /**
     * Maps the theme to the correct theme object or string
     * This is used to apply the correct theme when the theme is OS
     * @param theme
     */
    mapOsTheme(theme: AdaptableTheme | string): AdaptableTheme | string;
}
