import { ComponentClass } from "react"; import { StitchOptions } from "./index"; /** A Block represents a renderable asset type */ export declare type Block = ComponentClass | string[] | string | object; export declare function render(block: Block, options: StitchOptions): Promise;