import { VDOM } from './vdom';
export declare type Properties = {
    [x: string]: any;
};
export interface Create {
    (name: string): VDOM;
    (name: string, properties: Properties): VDOM;
    (name: string, children: VDOM[]): VDOM;
    (name: string, properties: Properties, children: VDOM[]): VDOM;
}
declare const create: Create;
export { create };
