import * as React from 'react'; interface ImageProps { alt?: string; title?: string; src?: string; style?: object; } declare const RefImage: React.ForwardRefExoticComponent>; export default RefImage;