export declare enum Devices { tablet = "tablet", mobile = "mobile", desktop = "desktop" } export declare type DeviceTypes = typeof Devices[keyof typeof Devices]; declare const getDeviceType: () => DeviceTypes; export default getDeviceType;