/** * 图片懒加载 Hook * * @param src 目标图片地址 * @param options 交叉观察器配置 * @returns ref: 绑定到 img 元素的 ref;imageSrc: 最终要渲染的图片地址 */ export declare const useLazyImage: (src: string, options?: IntersectionObserverInit) => { imgRef: import("react").RefObject; imageSrc: string; };