//#region src/hooks/window-resize/index.d.ts type Size = { width: number; height: number; }; type Options = { enabled?: boolean; }; declare const useWindowResize: (callback: (size: Size) => void, options?: Options) => void; //#endregion export { useWindowResize };