UNPKG

hh-ui-components

Version:
15 lines (14 loc) 328 B
import { FC } from "react"; export interface Props { valueProp: TraceableProps; } export interface TraceableProps { className: string; title: string; description: string; learnMore: string; href: string; imageUrl: Array<string>; } export declare const Traceable: FC<Props>; export default Traceable;