/** * Platform specific helpers. */ export declare class KitPlatformService { private platformId; constructor(platformId: Object); /** * Shortcut to `isPlatformBrowser` method. */ isBrowser(): boolean; /** * Shortcut to `isPlatformServer` method. */ isServer(): boolean; /** * Calc native scroll width. */ getScrollbarWidth(): number; isBrowserEdge(): boolean; isBrowserTrident(): boolean; isBrowserBlink(): boolean; isBrowserWebkit(): boolean; isBrowserIos(): boolean; isBrowserFirefox(): boolean; isBrowserAndroid(): boolean; isBrowserSafari(): boolean; }