declare const CDATA: (s: string) => string;
declare function html(itag: string, iattrs?: object, ...ichildren: any[]): string;
declare namespace html {
    var firstLine: string;
    var html: boolean;
}
declare const h: typeof html;

export { CDATA as C, h as a, html as h };
