Repository URL to install this package:
|
Version:
0.9.5 ▾
|
/// <reference types="react" />
import { LinkProps } from './typings';
/**
* rendering a children, by default it renders the text
*/
declare function renderChildren(props: LinkProps): {};
/**
* rendering the Link
*/
declare function renderLink(props: LinkProps): JSX.Element;
export { renderLink, renderChildren };