UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

12 lines (11 loc) 321 B
/// <reference types="react" /> /** @internal */ export interface IValueWithDescriptionProps { className?: string; description: string; value: string; color?: string; background?: string; } /** @internal */ export declare function ValueWithDescription(props: IValueWithDescriptionProps): JSX.Element;