import React from 'react'; import { CommonProps } from '../Element/Element'; declare type ImageProps = { src: string; /** alt text */ alt: string; /** mobile resolution source */ mobileSrc?: string; /** Breakpoint after which mobileSrc is used (in px) */ breakPoint?: number; } & CommonProps<'picture'>; export declare const Image: React.FunctionComponent; export default Image;