/** * `el(tag, attrs, children)` — tiny DOM-builder helper used everywhere * a string of `document.createElement` + setAttribute calls would * otherwise live. * * Special attribute keys: `text` sets `textContent`, `class` sets * `className`, anything starting with `on` is treated as an event * listener (e.g. `onclick`), everything else passes through to * `setAttribute`. `children` may include strings (auto-wrapped into * text nodes) or `null`/`undefined` (skipped). */ export declare function dashboardElJs(): string; //# sourceMappingURL=el.d.ts.map