/** * Scroll position */ export type ScrollPosition = { x: number; y: number; }; /** * Hook that tracks window scroll position * * @returns Current scroll position * * @example * ```tsx * const Component = () => { * const { x, y } = useWindowScroll(); * return