import { breakpointsTailwind } from '@vueuse/core'; export type PlatformName = 'web' | 'bitrix-mobile' | 'bitrix-desktop'; export type ScreenSize = keyof typeof breakpointsTailwind | 'xs'; export declare const useDevice: () => { platform: Readonly>; version: import("vue").ComputedRef; isWeb: import("vue").ComputedRef; isBitrixMobile: import("vue").ComputedRef; isBitrixDesktop: import("vue").ComputedRef; screen: import("vue").ComputedRef<{ current: ScreenSize; xs: boolean; sm: boolean; md: boolean; lg: boolean; xl: boolean; '2xl': boolean; isMobile: boolean; isTablet: boolean; isDesktop: boolean; isLargeDesktop: boolean; }>; };