export interface IEnvironment {
    readonly beanName: 'environment';
    addGlobalCSS(css: string, debugId: string): void;
    applyThemeClasses(el: HTMLElement): void;
    getDefaultListItemHeight(): number;
}
