6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
import React from 'react';
|
|
export declare const HotlinkedText: React.FC<{
|
|
text: string;
|
|
matcher?: (text: string) => string | null;
|
|
}>;
|