/** * Device Info Computation */ import type { DeviceType } from '../../device/detection'; export interface ComputedDeviceInfo { readonly isSmallDevice: boolean; readonly isTabletDevice: boolean; readonly isLandscapeDevice: boolean; readonly deviceType: DeviceType; readonly spacingMultiplier: number; } export declare const computeDeviceInfo: (dimensions?: { width: number; height: number; }) => ComputedDeviceInfo;