// @flow import { ReactComponentStyled, Translation } from "styled-components"; type ImageObject = {| jpg: string, webp: string, |}; export type Props = {| placeholder?: ImageObject, original: ImageObject, name: Translation, |}; export type State = {| loaded: boolean, |}; export type PictureProps = {| pictures: ImageObject, name: string, loaded: boolean, onLoad?: () => void, lowRes?: boolean, |}; declare export default React$ComponentType; declare export var StyledLazyImage: ReactComponentStyled;