UNPKG

react-xml-viewer

Version:
14 lines (13 loc) 450 B
export interface TextElementProps { text: string; hasSiblings: boolean; indentation: string; isText: boolean; keyValue: string; } export interface TextElementItemProps { children: string; keyValue: string; } export declare function TextElementItem(props: TextElementItemProps): import("react/jsx-runtime").JSX.Element; export declare function TextElement(props: TextElementProps): import("react/jsx-runtime").JSX.Element;