/// import { PresentationProps } from "./nodes"; export interface RenderOptions { outputType: "arraybuffer" | "base64" | "binarystring" | "blob" | "nodebuffer" | "uint8array"; } export declare const render: (node: React.ReactElement, opts?: RenderOptions) => Promise;