import React from 'react'; export type ProgressiveImageProps = { src: string; placeholder: string; width?: number | string; height?: number | string; className?: string; appendClassName?: string; alt?: string; caption?: string; captionClassName?: string; responsive?: boolean; style?: React.CSSProperties; }; export declare const ProgressiveImage: ({ src, placeholder, width, height, className, appendClassName, style, caption, captionClassName, alt, responsive, ...rest }: ProgressiveImageProps) => import('./react/jsx-runtime.js').JSX.Element; export default ProgressiveImage;