import { ComponentType } from "react"; export declare type Target = string | ComponentType; export declare type LineBuilder = { (text: string, index: number): string; }; export declare type HtmlBuilder = { (unsafeText: string, line: string): string; };