/// export type Device = "desktop" | "mobile" | "xr"; export type DeviceState = { xr: boolean; mobile: boolean; desktop: boolean; }; export declare const useDevice: () => { device: { mobile: boolean; desktop: boolean; xr: boolean; }; setDevice: import("react").Dispatch>; };