import React from 'react';
type VisibilitySensorProps = {
    partialVisibility?: boolean;
};
type LazyImageProps = {
    src: string;
    placeholder?: string;
    visibilitySensorProps?: VisibilitySensorProps;
    children: (src: string) => React.ReactNode;
};
declare const LazyImage: React.FunctionComponent<LazyImageProps>;
export default LazyImage;
