import { ParsedNode } from 'stream-markdown-parser'; import { NodeComponentProps } from '../../types/node-component'; import { default as React } from 'react'; export interface LinkNodeStyleProps { showTooltip?: boolean; color?: string; underlineHeight?: number; underlineBottom?: number | string; animationDuration?: number; animationOpacity?: number; animationTiming?: string; animationIteration?: string | number; } export declare function LinkNode(props: NodeComponentProps<{ type: 'link'; href: string; title: string | null; text: string; children?: ParsedNode[]; loading?: boolean; }> & LinkNodeStyleProps): React.JSX.Element; export default LinkNode;