import React from 'react'; import { ILazyImageProps } from './types'; /** * LazyImage component for rendering images with lazy loading functionality. * * This component optimizes image loading by only loading images when they enter * the viewport, improving performance and reducing bandwidth usage. It supports * adaptive paths to ensure optimal image loading based on device or screen size, * as well as WebP detection to utilize the most efficient image format available. * * @link See examples https://antonbobrov.github.io/react-kit/?path=/docs/image-lazyimage--docs * * @requires Requires styles: `@import '~@anton.bobrov/react-components/lib/styles/components/LazyImage';` */ export declare const LazyImage: React.ForwardRefExoticComponent>; //# sourceMappingURL=index.d.ts.map