export declare class Devices { static get(): Device; static isPhone(): boolean; static isDesktop(): boolean; static isTablet(): boolean; } export declare type Device = 'phone' | 'tablet' | 'desktop';