import { ElementChildren, TextElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type TextProps = RecursivePartial> & { idx?: string | null; children?: ElementChildren | TextElement["children"] | string; data?: TextElement["data"]; }; export declare function Text(props: TextProps): React.JSX.Element;