import type { DeepNullable } from "../types/utils"; type WindowDimensions = DeepNullable>; /** * useWindowSize hook * A hook that provides information of the dimensions of the window * * @returns Dimensions of the window * @see https://rooks.vercel.app/docs/hooks/useWindowSize */ export declare function useWindowSize(): WindowDimensions; export {};