import { MutableRefObject } from 'react';
interface Options {
    readonly placeholderSrc?: string;
    readonly placeholderSrcset?: string;
    readonly imagesSelector?: string;
}
export declare function useLazyImages<T extends HTMLElement>({ placeholderSrc, placeholderSrcset, imagesSelector }?: Options): MutableRefObject<T | undefined>;
export {};
