type ScreenSize = { width: number; height: number; }; /** * Hook that tracks window dimensions * Updates on window resize events * * @returns Object with current width and height */ declare function useScreenSize(): ScreenSize; export { useScreenSize };