import { State, View } from "./interfaces";
/**
 * It render the views with its componets
 * @param view  The view JSX template of the page.
 * @param state The state object property of the page
 * @param rootElement The root element
 */
export declare function render(view: View, state: State, rootElement?: Element | null): Element;
