import { AppNodeRef } from '..'; import { MapStore } from 'nanostores'; import { BREAKPOINTS } from '../../ui/theme/constants'; type BREAKPOINTS_KEYS = keyof typeof BREAKPOINTS; type ResponsiveData = { screen: { name: BREAKPOINTS_KEYS; size: (typeof BREAKPOINTS)[BREAKPOINTS_KEYS]; }; sdkInView: boolean; sdkInDesktopView: boolean; }; export type ResponsiveStore = MapStore; export declare const useSdkResponsive: (appNode: AppNodeRef) => [ResponsiveStore]; export {};