UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

12 lines (11 loc) 325 B
import React from "react"; /** @internal */ export interface IImageWithDescriptionProps { className?: string; image?: string; color?: string; children?: React.ReactNode; onClick?: () => void; } /** @internal */ export declare function ImageWithDescription(props: IImageWithDescriptionProps): JSX.Element;