jsx-md
Version:
Generate markdown files with a React-like syntax.
19 lines (18 loc) • 364 B
TypeScript
import { Component } from "..";
/** @internal */
interface Props {
children: string;
src: string;
title?: string;
}
/**
* @example
* ```js
* render(<Image src="./image.png" title="Title">
* Alternative text
* </Image>)
* ===
* ''
*/
export declare const Image: Component<Props>;
export {};