import { SyntheticEvent } from "react"; import { ObjectFit } from "./types"; interface Props { src: string; alt: string; loaded: boolean; className?: string; sizes?: string; objectFit?: ObjectFit; objectPosition?: string; styleImg?: string; onLoad?: (event: SyntheticEvent) => void; onError?: (event: SyntheticEvent) => void; } declare const StyledImage: import("styled-components").StyledComponent<"img", any, Props, never>; export default StyledImage;