export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>; /** * Use a tiny blurred image (thumbnail) until the actual image is fetched */ declare function ProgressiveImage(props: { thumbnailSource?: string; imageSource?: string; alt?: string; }): JSX.Element; export default ProgressiveImage;