interface WindowSize {
    width: number;
    height: number;
}
/**
 * Hook that tracks window dimensions
 * @returns Object containing current window width and height
 * @example
 * const { width, height } = useWindowSize();
 * console.log(width, height);
 */
declare function useWindowSize(): WindowSize;

export { useWindowSize };
