import type React from 'react'; /** * A helper for rendering "render prop" contents * * Supports: * - Render Function * - ReactNode (JSX.Element or string) */ export declare function renderContent(Content: React.ReactNode | React.FunctionComponent, props: T): React.ReactNode;