/** @format */ interface WindowSize { width?: number; height?: number; } declare const useWindowSize: () => WindowSize; export default useWindowSize;