declare enum DeviceType {
    Desktop = 0,
    Smartphone = 1,
    Tablet = 2
}
export declare const getDeviceType: () => DeviceType;
export declare const getIsMacOS: () => boolean;
export declare const getIsMobile: () => boolean;
export {};
