declare module 'babylonjs-gui' { export = BABYLON.GUI; } declare module BABYLON.GUI { /** * Define a style used by control to automatically setup properties based on a template. * Only support font related properties so far */ class Style implements BABYLON.IDisposable { private _fontFamily; private _fontStyle; private _fontWeight; /** @hidden */ _host: AdvancedDynamicTexture; /** @hidden */ _fontSize: ValueAndUnit; /** * Observable raised when the style values are changed */ onChangedObservable: Observable