/** * Custom hook that returns the current viewport size. It will update * when the window is resized or the orientation changes. * * @returns The current viewport size * * @example * const { width, height } = useViewportSize(); */ export declare function useViewportSize(): { width: number; height: number; };