export interface VNode { tag: string | object | null; props: Record; children: (VNode | string)[]; } type Child = VNode | string | number | boolean | null | undefined | Child[]; export declare function h(tag: string | object | null, props: Record | null, ...children: Child[]): VNode; export {}; //# sourceMappingURL=h.d.ts.map