Repository URL to install this package:
|
Version:
4.0.75 ▾
|
import { ImageProps } from './typings';
/**
* Rendering a Image tag with inside the div tag
*/
declare function renderWrap(props: ImageProps): JSX.Element;
/**
* rendering the image tag
*/
declare function renderImageAsSemanticTag(props: ImageProps): JSX.Element;
/**
* Rendering as a Background Image
*/
declare function renderImageAsBackground(props: ImageProps): JSX.Element;
/**
* Main rendering method of the Image Component
*/
declare function renderImage(props: ImageProps): JSX.Element;
export { renderWrap, renderImageAsSemanticTag, renderImageAsBackground, renderImage, };