import type { ComponentAttributes, ComponentChild, FC, RefType } from "./types";
export declare function createElement(tag: string | FC, attrs: null | ComponentAttributes, ...children: ComponentChild[]): JSX.Element;
export declare const h: typeof createElement;
export declare const createRef: <T>() => RefType<T>;
