import { ISyntaxHighlighterNodesProps, ISyntaxHighlighterNodesListenerProps } from "./_types/ISyntaxHighlighterNodesProps";
import { IHighlightNode } from "../../../textFields/syntax/_types/IHighlightNode";
import { LFC } from "../../../_types/LFC";
/**
 * A component to highlight a single character
 */
export declare const SyntaxHighlighterChar: LFC<{
    char: string;
    start: number;
} & ISyntaxHighlighterNodesListenerProps>;
/**
 * A component to highlight a single node
 */
export declare const SyntaxHighlighterNode: LFC<{
    node: IHighlightNode;
} & ISyntaxHighlighterNodesListenerProps>;
/**
 * Renders the passed highlight nodes
 */
export declare const SyntaxHighlighterNodes: LFC<ISyntaxHighlighterNodesProps>;
//# sourceMappingURL=SyntaxHighlighterNodes.d.ts.map