import React from 'react'; import Div from '../Element/Div/Div'; import { CreateProps } from '../../types/utils/CreateProps'; declare type BackgroundImageProps = CreateProps<{ /** source */ src: string; /** alt text */ alt: string; /** mobile resolution source */ mobileSrc?: string; /** Make image scale with original aspect ratio */ scaleWithOriginalAspectRatio?: boolean; }, typeof Div>; declare const BackgroundImage: React.FunctionComponent; export default BackgroundImage;