18 lines
622 B
TypeScript
Raw Normal View History

2021-02-20 18:55:36 +01:00
import * as React from "react";
export declare const HighlightContainer: (props: {
2021-05-01 23:38:36 +02:00
children: React.ReactNode | React.ReactNode[];
2021-02-20 18:55:36 +01:00
classList?: string;
highlightedId?: string;
onClick?: () => void;
}) => JSX.Element;
export declare const HighlightRegion: (props: React.HTMLProps<HTMLDivElement> & {
highlightId: string;
}) => React.DetailedReactHTMLElement<React.HTMLProps<HTMLDivElement> & {
highlightId: string;
}, HTMLDivElement>;
export declare const HighlightText: (props: {
highlightId: string;
className?: string;
2021-05-01 23:38:36 +02:00
children?: React.ReactNode | React.ReactNode[];
2021-02-20 18:55:36 +01:00
}) => JSX.Element;