import { RenderProps } from "./types.js"; //#region src/Render/Render.d.ts /** * Renders dynamic React content from a value, element, or component. * * Use this helper when a higher-level API accepts flexible render content, such * as a fallback, preloaded async component, or entry component. Primitive * content is rendered as-is, React elements are cloned with `props`, and * component constructors are instantiated with `props`. * * @param props - Dynamic content and optional props to apply. * @returns A React node for the provided content. * * @example * ```tsx * * } props={{ tone: 'success' }} /> * * ``` */ declare function Render(props: RenderProps): import("react").JSX.Element; //#endregion export { Render }; //# sourceMappingURL=Render.d.ts.map