type Device = 'desktop' | 'mobile'; declare const DEFAULT_DEVICE: Device; declare const getResponsiveUIHandlers: () => { getDeviceType: () => Device; addDeviceChangeListener: (onChange: (device: Device) => void) => void; toggleBodyOverflow: ({ hidden }: { hidden: boolean; }) => void; }; export { DEFAULT_DEVICE, type Device, getResponsiveUIHandlers };