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;
