import { IDeviceInfo } from '../types'; export interface IUseDeviceProps { bemModifiersSuffix?: { phone?: string; tablet?: string; desktop?: string; }; } declare const useDevice: () => IDeviceInfo; export default useDevice;