import { CSSProperties } from 'react'; declare function BackgroundImage(props: BackgroundProps): JSX.Element; declare namespace BackgroundImage { var displayName: string; } interface BackgroundProps { style?: CSSProperties; src: string; alt?: string; className?: string; [key: string]: any; } export default BackgroundImage;