type DeviceType = "mobile" | "tablet" | "desktop"; export declare function useDeviceType(): { deviceType: DeviceType; isTab: boolean; isMobile: boolean; isDesktop: boolean; }; export {};