import { VNode } from "ultradom";
export declare type Keys = string;
export declare type State = {
    [k in Keys]: any;
};
export declare type View = (state: any) => VNode<any>;
export declare type JSXElements = VNode<any>;
export declare type Children = Array<VNode<{}>>;
