interface UseLazyImageOptions {
    threshold?: number;
    rootMargin?: string;
}
export interface ILazyImageProps {
    src: string;
    options: UseLazyImageOptions;
}
export declare const useLazyImage: ({ src, options }: ILazyImageProps) => {
    isIntersecting: boolean;
    isLoaded: boolean;
    ref: import("react").RefObject<HTMLDivElement>;
};
export {};
