import { HElement, HElements, HFnc, HObj, HTagAttrs, HTagChildren, HTagHead } from "./hsml"; export declare function h(tag: HTagHead): HElement; export declare function h(tag: HTagHead, children: HTagChildren): HElement; export declare function h(tag: HTagHead, text: string | String | boolean | Boolean | number | Number | Date | null): HElement; export declare function h(tag: HTagHead, hfnc: HFnc): HElement; export declare function h(tag: HTagHead, hobj: HObj): HElement; export declare function h(tag: HTagHead, helement: HElement): HElement; export declare function h(tag: HTagHead, helements: HElements): HElement; export declare function h(tag: HTagHead, attrs: HTagAttrs): HElement; export declare function h(tag: HTagHead, attrs: HTagAttrs, children: HTagChildren): HElement; export declare function h(tag: HTagHead, attrs: HTagAttrs, text: string | String | boolean | Boolean | number | Number | Date | null): HElement; export declare function h(tag: HTagHead, attrs: HTagAttrs, hfnc: HFnc): HElement; export declare function h(tag: HTagHead, attrs: HTagAttrs, hobj: HObj): HElement; export declare function h(tag: HTagHead, attrs: HTagAttrs, helement: HElement): HElement; export declare function h(tag: HTagHead, attrs: HTagAttrs, helements: HElements): HElement;