import { RawElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type RawProps = RecursivePartial & { idx?: string | null; children?: string; data?: RawElement["data"]; }; export declare function Raw(props: RawProps): React.JSX.Element;