@meonode/ui 0.2.7 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1169 @@
1
+ // Layout components
2
+ /**
3
+ * Represents a div element.
4
+ * @param props Optional properties for the div element.
5
+ * @returns A div element node.
6
+ */
7
+ export declare const Div: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
8
+ element: "div";
9
+ };
10
+ /**
11
+ * Represents a root div element with full viewport dimensions and column flex layout.
12
+ * By default, applies flex column layout and 100% viewport dimensions.
13
+ * @param props Optional properties for the root div element that merge with defaults.
14
+ * @returns A div element node configured as root container.
15
+ * @example
16
+ * Root({
17
+ * backgroundColor: 'white',
18
+ * children: [Header(), Main(), Footer()]
19
+ * })
20
+ */
21
+ export declare const Root: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
22
+ element: "div";
23
+ };
24
+ /**
25
+ * Represents a column layout using flexbox.
26
+ * @param props Optional properties for the column layout.
27
+ * @returns A div element node with flexbox column layout.
28
+ */
29
+ export declare const Column: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
30
+ element: "div";
31
+ };
32
+ /**
33
+ * Represents a row layout using flexbox.
34
+ * @param props Optional properties for the row layout.
35
+ * @returns A div element node with flexbox row layout.
36
+ */
37
+ export declare const Row: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
38
+ element: "div";
39
+ };
40
+ /**
41
+ * Represents a grid layout.
42
+ * @param props Optional properties for the grid layout.
43
+ * @returns A div element node with grid layout.
44
+ */
45
+ export declare const Grid: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
46
+ element: "div";
47
+ };
48
+ /**
49
+ * Represents a centered container with flexbox alignment.
50
+ * By default, centers content both horizontally and vertically.
51
+ * @param props Optional properties for the div element.
52
+ * @returns A div element node configured for centered content.
53
+ */
54
+ export declare const Center: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
55
+ element: "div";
56
+ };
57
+ /**
58
+ * Represents a fixed positioned element.
59
+ * @param props Optional properties for the fixed positioned element.
60
+ * @returns A div element node with fixed positioning.
61
+ */
62
+ export declare const Fixed: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
63
+ element: "div";
64
+ };
65
+ /**
66
+ * Represents a relatively positioned element.
67
+ * @param props Optional properties for the relatively positioned element.
68
+ * @returns A div element node with relative positioning.
69
+ */
70
+ export declare const Relative: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
71
+ element: "div";
72
+ };
73
+ /**
74
+ * Represents an absolutely positioned element.
75
+ * @param props Optional properties for the absolutely positioned element.
76
+ * @returns A div element node with absolute positioning.
77
+ */
78
+ export declare const Absolute: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
79
+ element: "div";
80
+ };
81
+ /**
82
+ * Represents a sticky positioned element.
83
+ * @param props Optional properties for the sticky positioned element.
84
+ * @returns A div element node with sticky positioning.
85
+ */
86
+ export declare const Sticky: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
87
+ element: "div";
88
+ };
89
+ /**
90
+ * Represents a statically positioned element.
91
+ * @param props Optional properties for the statically positioned element.
92
+ * @returns A div element node with static positioning.
93
+ */
94
+ export declare const Static: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"div", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"div">) & {
95
+ element: "div";
96
+ };
97
+ // Typography
98
+ /**
99
+ * Creates an h1 heading element node.
100
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
101
+ * @param props Optional properties for the h1 element.
102
+ * @returns An h1 element node.
103
+ */
104
+ export declare const H1: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"h1", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"h1">) & {
105
+ element: "h1";
106
+ };
107
+ /**
108
+ * Creates an h2 heading element node.
109
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
110
+ * @param props Optional properties for the h2 element.
111
+ * @returns An h2 element node.
112
+ */
113
+ export declare const H2: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"h2", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"h2">) & {
114
+ element: "h2";
115
+ };
116
+ /**
117
+ * Creates an h3 heading element node.
118
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
119
+ * @param props Optional properties for the h3 element.
120
+ * @returns An h3 element node.
121
+ */
122
+ export declare const H3: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"h3", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"h3">) & {
123
+ element: "h3";
124
+ };
125
+ /**
126
+ * Creates an h4 heading element node.
127
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
128
+ * @param props Optional properties for the h4 element.
129
+ * @returns An h4 element node.
130
+ */
131
+ export declare const H4: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"h4", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"h4">) & {
132
+ element: "h4";
133
+ };
134
+ /**
135
+ * Creates an h5 heading element node.
136
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
137
+ * @param props Optional properties for the h5 element.
138
+ * @returns An h5 element node.
139
+ */
140
+ export declare const H5: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"h5", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"h5">) & {
141
+ element: "h5";
142
+ };
143
+ /**
144
+ * Creates an h6 heading element node.
145
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
146
+ * @param props Optional properties for the h6 element.
147
+ * @returns An h6 element node.
148
+ */
149
+ export declare const H6: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"h6", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"h6">) & {
150
+ element: "h6";
151
+ };
152
+ /**
153
+ * Creates a strong element node for important text.
154
+ * @param children The content to be rendered within the element (text, numbers, components, etc) to emphasize.
155
+ * @param props Optional properties for the strong element.
156
+ * @returns A strong element node.
157
+ */
158
+ export declare const Strong: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"strong", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"strong">) & {
159
+ element: "strong";
160
+ };
161
+ /**
162
+ * Creates an em element node for emphasized text.
163
+ * @param children The content to be rendered within the element (text, numbers, components, etc) to emphasize.
164
+ * @param props Optional properties for the em element.
165
+ * @returns An em element node.
166
+ */
167
+ export declare const Em: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"em", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"em">) & {
168
+ element: "em";
169
+ };
170
+ /**
171
+ * Creates a small element node for side-comments and small print.
172
+ * @param children The content to be rendered within the element (text, numbers, components, etc).
173
+ * @param props Optional properties for styling and configuring the small element.
174
+ * @returns A small element node that can be rendered in React.
175
+ */
176
+ export declare const Small: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"small", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"small">) & {
177
+ element: "small";
178
+ };
179
+ /**
180
+ * Creates a mark element node for highlighted text.
181
+ * @param children The content to be rendered within the element (text, numbers, components, etc) to highlight.
182
+ * @param props Optional properties for the mark element.
183
+ * @returns A mark element node.
184
+ */
185
+ export declare const Mark: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"mark", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"mark">) & {
186
+ element: "mark";
187
+ };
188
+ /**
189
+ * Creates a span element node.
190
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the span.
191
+ * @param props Optional properties for the span element.
192
+ * @returns A span element node.
193
+ */
194
+ export declare const Span: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"span", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"span">) & {
195
+ element: "span";
196
+ };
197
+ /**
198
+ * Creates a paragraph element node.
199
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the paragraph.
200
+ * @param props Optional properties for the p element.
201
+ * @returns A paragraph element node.
202
+ */
203
+ export declare const P: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"p", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"p">) & {
204
+ element: "p";
205
+ };
206
+ /**
207
+ * Renders a semantic block of text using a `<p>` element.
208
+ * Alias for `P(...)`, recommended for general-purpose text content.
209
+ * @example
210
+ * Text('Hello world', { fontSize: 'theme.text.md' })
211
+ */
212
+ export declare const Text: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"p", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"p">) & {
213
+ element: "p";
214
+ };
215
+ /**
216
+ * Creates a preformatted text element node.
217
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the pre element.
218
+ * @param props Optional properties for the pre element.
219
+ * @returns A pre element node.
220
+ */
221
+ export declare const Pre: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"pre", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"pre">) & {
222
+ element: "pre";
223
+ };
224
+ /**
225
+ * Creates a code element node for displaying code snippets.
226
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the code.
227
+ * @param props Optional properties for the code element.
228
+ * @returns A code element node.
229
+ */
230
+ export declare const Code: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"code", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"code">) & {
231
+ element: "code";
232
+ };
233
+ /**
234
+ * Represents a line break element.
235
+ * @param props Optional properties for the br element.
236
+ * @returns A br element node.
237
+ */
238
+ export declare const Br: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"br", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"br">) & {
239
+ element: "br";
240
+ };
241
+ // Lists
242
+ /**
243
+ * Represents an ordered list.
244
+ * @param props Optional properties for the ol element.
245
+ * @returns An ol element node.
246
+ */
247
+ export declare const Ol: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"ol", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"ol">) & {
248
+ element: "ol";
249
+ };
250
+ /**
251
+ * Represents an unordered list.
252
+ * @param props Optional properties for the ul element.
253
+ * @returns A ul element node.
254
+ */
255
+ export declare const Ul: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"ul", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"ul">) & {
256
+ element: "ul";
257
+ };
258
+ /**
259
+ * Represents a list item.
260
+ * @param props Optional properties for the li element.
261
+ * @returns An li element node.
262
+ */
263
+ export declare const Li: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"li", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"li">) & {
264
+ element: "li";
265
+ };
266
+ /**
267
+ * Represents a description list.
268
+ * @param props Optional properties for the dl element.
269
+ * @returns A dl element node.
270
+ */
271
+ export declare const Dl: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"dl", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"dl">) & {
272
+ element: "dl";
273
+ };
274
+ /**
275
+ * Represents a term in a description list.
276
+ * @param props Optional properties for the dt element.
277
+ * @returns A dt element node.
278
+ */
279
+ export declare const Dt: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"dt", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"dt">) & {
280
+ element: "dt";
281
+ };
282
+ /**
283
+ * Represents a description in a description list.
284
+ * @param props Optional properties for the dd element.
285
+ * @returns A dd element node.
286
+ */
287
+ export declare const Dd: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"dd", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"dd">) & {
288
+ element: "dd";
289
+ };
290
+ // Forms and inputs
291
+ /**
292
+ * Represents an HTML form.
293
+ * @param props Optional properties for the form element.
294
+ * @returns A form element node.
295
+ */
296
+ export declare const Form: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"form", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"form">) & {
297
+ element: "form";
298
+ };
299
+ /**
300
+ * Represents a label for an input element.
301
+ * @param props Optional properties for the label element.
302
+ * @returns A label element node.
303
+ */
304
+ export declare const Label: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"label", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"label">) & {
305
+ element: "label";
306
+ };
307
+ /**
308
+ * Represents an input element.
309
+ * @param props Optional properties for the input element.
310
+ * @returns An input element node.
311
+ */
312
+ export declare const Input: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"input", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"input">) & {
313
+ element: "input";
314
+ };
315
+ /**
316
+ * Creates a button element node.
317
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the button.
318
+ * @param props Optional properties for the button element.
319
+ * @returns A button element node.
320
+ */
321
+ export declare const Button: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"button", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"button">) & {
322
+ element: "button";
323
+ };
324
+ /**
325
+ * Represents a textarea element for multiline text input.
326
+ * @param props Optional properties for the textarea element.
327
+ * @returns A textarea element node.
328
+ */
329
+ export declare const Textarea: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"textarea", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"textarea">) & {
330
+ element: "textarea";
331
+ };
332
+ /**
333
+ * Represents a select dropdown element.
334
+ * @param props Optional properties for the select element.
335
+ * @returns A select element node.
336
+ */
337
+ export declare const Select: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"select", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"select">) & {
338
+ element: "select";
339
+ };
340
+ /**
341
+ * Represents an option within a select element.
342
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the option.
343
+ * @param props Optional properties for the option element.
344
+ * @returns An option element node.
345
+ */
346
+ export declare const Option: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"option", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"option">) & {
347
+ element: "option";
348
+ };
349
+ /**
350
+ * Represents a fieldset element for grouping form elements.
351
+ * @param props Optional properties for the fieldset element.
352
+ * @returns A fieldset element node.
353
+ */
354
+ export declare const Fieldset: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"fieldset", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"fieldset">) & {
355
+ element: "fieldset";
356
+ };
357
+ /**
358
+ * Represents a legend for a fieldset.
359
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the legend.
360
+ * @param props Optional properties for the legend element.
361
+ * @returns A legend element node.
362
+ */
363
+ export declare const Legend: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"legend", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"legend">) & {
364
+ element: "legend";
365
+ };
366
+ /**
367
+ * Represents an option group within a select element.
368
+ * @param props Optional properties for the optgroup element.
369
+ * @returns An optgroup element node.
370
+ */
371
+ export declare const Optgroup: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"optgroup", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"optgroup">) & {
372
+ element: "optgroup";
373
+ };
374
+ // Tables
375
+ /**
376
+ * Represents a table element.
377
+ * @param props Optional properties for the table element.
378
+ * @returns A table element node.
379
+ */
380
+ export declare const Table: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"table", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"table">) & {
381
+ element: "table";
382
+ };
383
+ /**
384
+ * Represents a table header section.
385
+ * @param props Optional properties for the thead element.
386
+ * @returns A thead element node.
387
+ */
388
+ export declare const Thead: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"thead", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"thead">) & {
389
+ element: "thead";
390
+ };
391
+ /**
392
+ * Represents a table body section.
393
+ * @param props Optional properties for the tbody element.
394
+ * @returns A tbody element node.
395
+ */
396
+ export declare const Tbody: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"tbody", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"tbody">) & {
397
+ element: "tbody";
398
+ };
399
+ /**
400
+ * Represents a table footer section.
401
+ * @param props Optional properties for the tfoot element.
402
+ * @returns A tfoot element node.
403
+ */
404
+ export declare const Tfoot: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"tfoot", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"tfoot">) & {
405
+ element: "tfoot";
406
+ };
407
+ /**
408
+ * Represents a table row.
409
+ * @param props Optional properties for the tr element.
410
+ * @returns A tr element node.
411
+ */
412
+ export declare const Tr: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"tr", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"tr">) & {
413
+ element: "tr";
414
+ };
415
+ /**
416
+ * Represents a table header cell.
417
+ * @param props Optional properties for the th element.
418
+ * @returns A th element node.
419
+ */
420
+ export declare const Th: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"th", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"th">) & {
421
+ element: "th";
422
+ };
423
+ /**
424
+ * Represents a table data cell.
425
+ * @param props Optional properties for the td element.
426
+ * @returns A td element node.
427
+ */
428
+ export declare const Td: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"td", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"td">) & {
429
+ element: "td";
430
+ };
431
+ /**
432
+ * Represents a table caption.
433
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the caption.
434
+ * @param props Optional properties for the caption element.
435
+ * @returns A caption element node.
436
+ */
437
+ export declare const Caption: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"caption", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"caption">) & {
438
+ element: "caption";
439
+ };
440
+ /**
441
+ * Represents a table column group.
442
+ * @param props Optional properties for the colgroup element.
443
+ * @returns A colgroup element node.
444
+ */
445
+ export declare const Colgroup: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"colgroup", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"colgroup">) & {
446
+ element: "colgroup";
447
+ };
448
+ /**
449
+ * Represents a table column.
450
+ * @param props Optional properties for the col element.
451
+ * @returns A col element node.
452
+ */
453
+ export declare const Col: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"col", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"col">) & {
454
+ element: "col";
455
+ };
456
+ // Media elements
457
+ /**
458
+ * Represents an image element.
459
+ * @param props Optional properties for the img element.
460
+ * @returns An img element node.
461
+ */
462
+ export declare const Img: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"img", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"img">) & {
463
+ element: "img";
464
+ };
465
+ /**
466
+ * Represents a video element.
467
+ * @param props Optional properties for the video element.
468
+ * @returns A video element node.
469
+ */
470
+ export declare const Video: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"video", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"video">) & {
471
+ element: "video";
472
+ };
473
+ /**
474
+ * Represents an audio element.
475
+ * @param props Optional properties for the audio element.
476
+ * @returns An audio element node.
477
+ */
478
+ export declare const Audio: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"audio", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"audio">) & {
479
+ element: "audio";
480
+ };
481
+ /**
482
+ * Represents a picture element.
483
+ * @param props Optional properties for the picture element.
484
+ * @returns A picture element node.
485
+ */
486
+ export declare const Picture: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"picture", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"picture">) & {
487
+ element: "picture";
488
+ };
489
+ /**
490
+ * Represents a source element.
491
+ * @param props Optional properties for the source element.
492
+ * @returns A source element node.
493
+ */
494
+ export declare const Source: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"source", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"source">) & {
495
+ element: "source";
496
+ };
497
+ /**
498
+ * Represents a text track element.
499
+ * @param props Optional properties for the track element.
500
+ * @returns A track element node.
501
+ */
502
+ export declare const Track: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"track", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"track">) & {
503
+ element: "track";
504
+ };
505
+ /**
506
+ * Represents a canvas element.
507
+ * @param props Optional properties for the canvas element.
508
+ * @returns A canvas element node.
509
+ */
510
+ export declare const Canvas: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"canvas", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"canvas">) & {
511
+ element: "canvas";
512
+ };
513
+ /**
514
+ * Represents an iframe element.
515
+ * @param props Optional properties for the iframe element.
516
+ * @returns An iframe element node.
517
+ */
518
+ export declare const Iframe: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"iframe", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"iframe">) & {
519
+ element: "iframe";
520
+ };
521
+ // SVG elements
522
+ /**
523
+ * Represents an SVG container element.
524
+ * @param props Optional properties for the svg element.
525
+ * @returns An svg element node.
526
+ */
527
+ export declare const Svg: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"svg", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"svg">) & {
528
+ element: "svg";
529
+ };
530
+ /**
531
+ * Represents an SVG path element.
532
+ * @param props Optional properties for the path element.
533
+ * @returns A path element node.
534
+ */
535
+ export declare const SvgPath: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"path", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"path">) & {
536
+ element: "path";
537
+ };
538
+ /**
539
+ * Represents an SVG circle element.
540
+ * @param props Optional properties for the circle element.
541
+ * @returns A circle element node.
542
+ */
543
+ export declare const SvgCircle: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"circle", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"circle">) & {
544
+ element: "circle";
545
+ };
546
+ /**
547
+ * Represents an SVG ellipse element.
548
+ * @param props Optional properties for the ellipse element.
549
+ * @returns An ellipse element node.
550
+ */
551
+ export declare const SvgEllipse: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"ellipse", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"ellipse">) & {
552
+ element: "ellipse";
553
+ };
554
+ /**
555
+ * Represents an SVG line element.
556
+ * @param props Optional properties for the line element.
557
+ * @returns A line element node.
558
+ */
559
+ export declare const SvgLine: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"line", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"line">) & {
560
+ element: "line";
561
+ };
562
+ /**
563
+ * Represents an SVG polyline element.
564
+ * @param props Optional properties for the polyline element.
565
+ * @returns A polyline element node.
566
+ */
567
+ export declare const SvgPolyline: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"polyline", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"polyline">) & {
568
+ element: "polyline";
569
+ };
570
+ /**
571
+ * Represents an SVG polygon element.
572
+ * @param props Optional properties for the polygon element.
573
+ * @returns A polygon element node.
574
+ */
575
+ export declare const SvgPolygon: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"polygon", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"polygon">) & {
576
+ element: "polygon";
577
+ };
578
+ /**
579
+ * Represents an SVG rectangle element.
580
+ * @param props Optional properties for the rect element.
581
+ * @returns A rect element node.
582
+ */
583
+ export declare const SvgRect: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"rect", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"rect">) & {
584
+ element: "rect";
585
+ };
586
+ /**
587
+ * Represents an SVG use element.
588
+ * @param props Optional properties for the use element.
589
+ * @returns A use element node.
590
+ */
591
+ export declare const SvgUse: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"use", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"use">) & {
592
+ element: "use";
593
+ };
594
+ /**
595
+ * Represents an SVG definitions element.
596
+ * @param props Optional properties for the defs element.
597
+ * @returns A defs element node.
598
+ */
599
+ export declare const SvgDefs: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"defs", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"defs">) & {
600
+ element: "defs";
601
+ };
602
+ /**
603
+ * Represents an SVG linear gradient element.
604
+ * @param props Optional properties for the linearGradient element.
605
+ * @returns A linearGradient element node.
606
+ */
607
+ export declare const SvgLinearGradient: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"linearGradient", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"linearGradient">) & {
608
+ element: "linearGradient";
609
+ };
610
+ /**
611
+ * Represents an SVG radial gradient element.
612
+ * @param props Optional properties for the radialGradient element.
613
+ * @returns A radialGradient element node.
614
+ */
615
+ export declare const SvgRadialGradient: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"radialGradient", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"radialGradient">) & {
616
+ element: "radialGradient";
617
+ };
618
+ /**
619
+ * Represents an SVG gradient stop element.
620
+ * @param props Optional properties for the stop element.
621
+ * @returns A stop element node.
622
+ */
623
+ export declare const SvgStop: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"stop", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"stop">) & {
624
+ element: "stop";
625
+ };
626
+ /**
627
+ * Represents an SVG symbol element.
628
+ * @param props Optional properties for the symbol element.
629
+ * @returns A symbol element node.
630
+ */
631
+ export declare const SvgSymbol: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"symbol", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"symbol">) & {
632
+ element: "symbol";
633
+ };
634
+ /**
635
+ * Represents an SVG group element.
636
+ * @param props Optional properties for the g element.
637
+ * @returns A g element node.
638
+ */
639
+ export declare const SvgG: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"g", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"g">) & {
640
+ element: "g";
641
+ };
642
+ /**
643
+ * Represents an SVG text element.
644
+ * @param props Optional properties for the text element.
645
+ * @returns A text element node.
646
+ */
647
+ export declare const SvgText: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"text", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"text">) & {
648
+ element: "text";
649
+ };
650
+ /**
651
+ * Represents an SVG text span element.
652
+ * @param props Optional properties for the tspan element.
653
+ * @returns A tspan element node.
654
+ */
655
+ export declare const SvgTspan: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"tspan", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"tspan">) & {
656
+ element: "tspan";
657
+ };
658
+ // Navigation and links
659
+ /**
660
+ * Represents an anchor element.
661
+ * @param props Optional properties for the a element.
662
+ * @returns An a element node.
663
+ */
664
+ export declare const A: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"a", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"a">) & {
665
+ element: "a";
666
+ };
667
+ /**
668
+ * Represents a navigation element.
669
+ * @param props Optional properties for the nav element.
670
+ * @returns A nav element node.
671
+ */
672
+ export declare const Nav: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"nav", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"nav">) & {
673
+ element: "nav";
674
+ };
675
+ // Document structure
676
+ /**
677
+ * Represents the body element of an HTML document.
678
+ * @param props Optional properties for the body element.
679
+ * @returns A body element node.
680
+ */
681
+ export declare const Body: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"body", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"body">) & {
682
+ element: "body";
683
+ };
684
+ /**
685
+ * Represents the main content of a document.
686
+ * @param props Optional properties for the main element.
687
+ * @returns A main element node.
688
+ */
689
+ export declare const Main: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"main", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"main">) & {
690
+ element: "main";
691
+ };
692
+ /**
693
+ * Represents a header element.
694
+ * @param props Optional properties for the header element.
695
+ * @returns A header element node.
696
+ */
697
+ export declare const Header: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"header", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"header">) & {
698
+ element: "header";
699
+ };
700
+ /**
701
+ * Represents a footer element.
702
+ * @param props Optional properties for the footer element.
703
+ * @returns A footer element node.
704
+ */
705
+ export declare const Footer: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"footer", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"footer">) & {
706
+ element: "footer";
707
+ };
708
+ /**
709
+ * Represents an aside element.
710
+ * @param props Optional properties for the aside element.
711
+ * @returns An aside element node.
712
+ */
713
+ export declare const Aside: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"aside", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"aside">) & {
714
+ element: "aside";
715
+ };
716
+ /**
717
+ * Represents a section element.
718
+ * @param props Optional properties for the section element.
719
+ * @returns A section element node.
720
+ */
721
+ export declare const Section: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"section", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"section">) & {
722
+ element: "section";
723
+ };
724
+ /**
725
+ * Represents an article element.
726
+ * @param props Optional properties for the article element.
727
+ * @returns An article element node.
728
+ */
729
+ export declare const Article: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"article", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"article">) & {
730
+ element: "article";
731
+ };
732
+ /**
733
+ * Represents a figure element.
734
+ * @param props Optional properties for the figure element.
735
+ * @returns A figure element node.
736
+ */
737
+ export declare const Figure: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"figure", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"figure">) & {
738
+ element: "figure";
739
+ };
740
+ /**
741
+ * Represents a figure caption element.
742
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the figcaption.
743
+ * @param props Optional properties for the figcaption element.
744
+ * @returns A figcaption element node.
745
+ */
746
+ export declare const Figcaption: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"figcaption", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"figcaption">) & {
747
+ element: "figcaption";
748
+ };
749
+ /**
750
+ * Represents a blockquote element.
751
+ * @param props Optional properties for the blockquote element.
752
+ * @returns A blockquote element node.
753
+ */
754
+ export declare const Blockquote: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"blockquote", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"blockquote">) & {
755
+ element: "blockquote";
756
+ };
757
+ /**
758
+ * Represents an address element.
759
+ * @param props Optional properties for the address element.
760
+ * @returns An address element node.
761
+ */
762
+ export declare const Address: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"address", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"address">) & {
763
+ element: "address";
764
+ };
765
+ /**
766
+ * Represents a dialog element.
767
+ * @param props Optional properties for the dialog element.
768
+ * @returns A dialog element node.
769
+ */
770
+ export declare const Dialog: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"dialog", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"dialog">) & {
771
+ element: "dialog";
772
+ };
773
+ /**
774
+ * Represents a details element.
775
+ * @param props Optional properties for the details element.
776
+ * @returns A details element node.
777
+ */
778
+ export declare const Details: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"details", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"details">) & {
779
+ element: "details";
780
+ };
781
+ /**
782
+ * Represents a summary element for a details disclosure box.
783
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the summary.
784
+ * @param props Optional properties for the summary element.
785
+ * @returns A summary element node.
786
+ */
787
+ export declare const Summary: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"summary", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"summary">) & {
788
+ element: "summary";
789
+ };
790
+ // Document head elements
791
+ /**
792
+ * Represents a head element.
793
+ * @param props Optional properties for the head element.
794
+ * @returns A head element node.
795
+ */
796
+ export declare const Head: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"head", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"head">) & {
797
+ element: "head";
798
+ };
799
+ /**
800
+ * Represents the root HTML element.
801
+ * @param props Optional properties for the HTML element.
802
+ * @returns An HTML element node.
803
+ */
804
+ export declare const Html: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"html", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"html">) & {
805
+ element: "html";
806
+ };
807
+ /**
808
+ * Represents a meta element.
809
+ * @param props Optional properties for the meta element.
810
+ * @returns A meta element node.
811
+ */
812
+ export declare const Meta: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"meta", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"meta">) & {
813
+ element: "meta";
814
+ };
815
+ /**
816
+ * Represents a link element.
817
+ * @param props Optional properties for the link element.
818
+ * @returns A link element node.
819
+ */
820
+ export declare const Link: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"link", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"link">) & {
821
+ element: "link";
822
+ };
823
+ /**
824
+ * Represents a style element. Its content should be CSS text.
825
+ * @param props Optional properties for the style element.
826
+ * @returns A style element node.
827
+ */
828
+ export declare const Style: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"style", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"style">) & {
829
+ element: "style";
830
+ };
831
+ /**
832
+ * Represents a script element. For inline scripts, its content should be JavaScript text.
833
+ * @param props Optional properties for the script element (e.g., src, type, async, defer).
834
+ * @returns A script element node.
835
+ */
836
+ export declare const Script: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"script", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"script">) & {
837
+ element: "script";
838
+ };
839
+ /**
840
+ * Creates a title element node for document head title.
841
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the title.
842
+ * @param props Optional properties for the title element.
843
+ * @returns A title element node.
844
+ */
845
+ export declare const Title: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"title", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"title">) & {
846
+ element: "title";
847
+ };
848
+ /**
849
+ * Represents a base element.
850
+ * @param props Optional properties for the base element.
851
+ * @returns A base element node.
852
+ */
853
+ export declare const Base: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"base", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"base">) & {
854
+ element: "base";
855
+ };
856
+ // --- Additional Text-Level Semantics ---
857
+ /**
858
+ * Represents an abbreviation or acronym.
859
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the abbreviation.
860
+ * @param props Optional properties for the abbr element.
861
+ * @returns An abbr element node.
862
+ */
863
+ export declare const Abbr: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"abbr", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"abbr">) & {
864
+ element: "abbr";
865
+ };
866
+ /**
867
+ * Represents text that should be stylistically offset from normal prose (traditionally bold).
868
+ * @param children The content to be rendered within the element (text, numbers, components, etc).
869
+ * @param props Optional properties for the b element.
870
+ * @returns A b element node.
871
+ */
872
+ export declare const B: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"b", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"b">) & {
873
+ element: "b";
874
+ };
875
+ /**
876
+ * Represents text that is isolated from its surroundings for bidirectional text formatting.
877
+ * @param children The content to be rendered within the element (text, numbers, components, etc).
878
+ * @param props Optional properties for the bdi element.
879
+ * @returns A bdi element node.
880
+ */
881
+ export declare const Bdi: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"bdi", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"bdi">) & {
882
+ element: "bdi";
883
+ };
884
+ /**
885
+ * Overrides the current text directionality.
886
+ * @param children The content to be rendered within the element (text, numbers, components, etc).
887
+ * @param props Optional properties for the bdo element.
888
+ * @returns A bdo element node.
889
+ */
890
+ export declare const Bdo: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"bdo", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"bdo">) & {
891
+ element: "bdo";
892
+ };
893
+ /**
894
+ * Represents the title of a work (e.g., a book, a song, an essay).
895
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the citation.
896
+ * @param props Optional properties for the cite element.
897
+ * @returns A cite element node.
898
+ */
899
+ export declare const Cite: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"cite", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"cite">) & {
900
+ element: "cite";
901
+ };
902
+ /**
903
+ * Links a piece of content with a machine-readable translation.
904
+ * @param children The content to be rendered within the element (text, numbers, components, etc).
905
+ * @param props Optional properties for the data element.
906
+ * @returns A data element node.
907
+ */
908
+ export declare const Data: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"data", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"data">) & {
909
+ element: "data";
910
+ };
911
+ /**
912
+ * Represents a definition of a term.
913
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the definition.
914
+ * @param props Optional properties for the dfn element.
915
+ * @returns A dfn element node.
916
+ */
917
+ export declare const Dfn: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"dfn", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"dfn">) & {
918
+ element: "dfn";
919
+ };
920
+ /**
921
+ * Represents text in an alternate voice or mood (traditionally italic).
922
+ * @param children The content to be rendered within the element (text, numbers, components, etc).
923
+ * @param props Optional properties for the i element.
924
+ * @returns An i element node.
925
+ */
926
+ export declare const I: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"i", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"i">) & {
927
+ element: "i";
928
+ };
929
+ /**
930
+ * Represents user input (typically keyboard input).
931
+ * @param children The content to be rendered within the element (text, numbers, components, etc) representing keyboard input.
932
+ * @param props Optional properties for the kbd element.
933
+ * @returns A kbd element node.
934
+ */
935
+ export declare const Kbd: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"kbd", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"kbd">) & {
936
+ element: "kbd";
937
+ };
938
+ /**
939
+ * Represents an inline quotation.
940
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the quotation.
941
+ * @param props Optional properties for the q element.
942
+ * @returns A q element node.
943
+ */
944
+ export declare const Q: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"q", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"q">) & {
945
+ element: "q";
946
+ };
947
+ /**
948
+ * Represents fallback parenthesis for ruby annotations.
949
+ * @param children The content to be rendered within the element (text, numbers, components, etc).
950
+ * @param props Optional properties for the rp element.
951
+ * @returns An rp element node.
952
+ */
953
+ export declare const Rp: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"rp", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"rp">) & {
954
+ element: "rp";
955
+ };
956
+ /**
957
+ * Represents the ruby text component of a ruby annotation.
958
+ * @param children The content to be rendered within the element (text, numbers, components, etc).
959
+ * @param props Optional properties for the rt element.
960
+ * @returns An rt element node.
961
+ */
962
+ export declare const Rt: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"rt", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"rt">) & {
963
+ element: "rt";
964
+ };
965
+ /**
966
+ * Represents a ruby annotation.
967
+ * @param props Optional properties for the ruby element.
968
+ * @returns A ruby element node.
969
+ */
970
+ export declare const Ruby: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"ruby", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"ruby">) & {
971
+ element: "ruby";
972
+ };
973
+ /**
974
+ * Represents text that is no longer accurate or relevant (strikethrough).
975
+ * @param children The content to be rendered within the element (text, numbers, components, etc) to be struck through.
976
+ * @param props Optional properties for the s element.
977
+ * @returns An s element node.
978
+ */
979
+ export declare const S: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"s", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"s">) & {
980
+ element: "s";
981
+ };
982
+ /**
983
+ * Represents sample output from a computer program.
984
+ * @param children The content to be rendered within the element (text, numbers, components, etc) representing sample output.
985
+ * @param props Optional properties for the samp element.
986
+ * @returns A samp element node.
987
+ */
988
+ export declare const Samp: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"samp", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"samp">) & {
989
+ element: "samp";
990
+ };
991
+ /**
992
+ * Represents subscript text.
993
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the subscript.
994
+ * @param props Optional properties for the sub element.
995
+ * @returns A sub element node.
996
+ */
997
+ export declare const Sub: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"sub", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"sub">) & {
998
+ element: "sub";
999
+ };
1000
+ /**
1001
+ * Represents superscript text.
1002
+ * @param children The content to be rendered within the element (text, numbers, components, etc) for the superscript.
1003
+ * @param props Optional properties for the sup element.
1004
+ * @returns A sup element node.
1005
+ */
1006
+ export declare const Sup: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"sup", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"sup">) & {
1007
+ element: "sup";
1008
+ };
1009
+ /**
1010
+ * Represents a specific period in time or a date.
1011
+ * @param children The content to be rendered within the element (text, numbers, components, etc) representing the time/date.
1012
+ * @param props Optional properties for the time element.
1013
+ * @returns A time element node.
1014
+ */
1015
+ export declare const Time: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"time", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"time">) & {
1016
+ element: "time";
1017
+ };
1018
+ /**
1019
+ * Represents text that should be rendered with an unarticulated, non-textual annotation (traditionally underline).
1020
+ * @param children The content to be rendered within the element (text, numbers, components, etc) to be underlined.
1021
+ * @param props Optional properties for the u element.
1022
+ * @returns A u element node.
1023
+ */
1024
+ export declare const U: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"u", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"u">) & {
1025
+ element: "u";
1026
+ };
1027
+ /**
1028
+ * Represents a variable in a mathematical expression or programming context.
1029
+ * @param children The content to be rendered within the element (text, numbers, components, etc) representing a variable.
1030
+ * @param props Optional properties for the var element.
1031
+ * @returns A var element node.
1032
+ */
1033
+ export declare const Var: (<AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("../node.type").NodeElement[] | import("../node.type").NodeElement, props?: Omit<import("../node.type").MergedProps<"var", AdditionalProps>, "children"> | undefined) => import("../node.type").NodeInstance<"var">) & {
1034
+ element: "var";
1035
+ };
1036
+ /**
1037
+ * Represents a word break opportunity. This is a void element.
1038
+ * @param props Optional properties for the wbr element.
1039
+ * @returns A wbr element node.
1040
+ */
1041
+ export declare const Wbr: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"wbr", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"wbr">) & {
1042
+ element: "wbr";
1043
+ };
1044
+ // --- Additional Grouping Content ---
1045
+ /**
1046
+ * Represents a thematic break between paragraph-level elements (e.g., a scene change in a story, or a shift of topic). This is a void element.
1047
+ * @param props Optional properties for the hr element.
1048
+ * @returns An hr element node.
1049
+ */
1050
+ export declare const Hr: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"hr", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"hr">) & {
1051
+ element: "hr";
1052
+ };
1053
+ /**
1054
+ * Represents a group of commands that a user can perform or activate.
1055
+ * @param props Optional properties for the menu element.
1056
+ * @returns A menu element node.
1057
+ */
1058
+ export declare const Menu: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"menu", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"menu">) & {
1059
+ element: "menu";
1060
+ };
1061
+ /**
1062
+ * Represents the parts of a document or application that contain search or filtering controls.
1063
+ * @param props Optional properties for the search element.
1064
+ * @returns A search element node.
1065
+ */
1066
+ export declare const Search: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"search", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"search">) & {
1067
+ element: "search";
1068
+ };
1069
+ // --- Additional Embedded Content ---
1070
+ /**
1071
+ * Represents an integration point for an external application or interactive content (a plug-in). This is a void element.
1072
+ * @param props Optional properties for the embed element.
1073
+ * @returns An embed element node.
1074
+ */
1075
+ export declare const Embed: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"embed", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"embed">) & {
1076
+ element: "embed";
1077
+ };
1078
+ /**
1079
+ * Represents an external resource, which can be treated as an image, a nested Browse context, or content to be handled by a plugin.
1080
+ * @param props Optional properties for the object element.
1081
+ * @returns An object element node.
1082
+ */
1083
+ export declare const ObjectElement: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"object", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"object">) & {
1084
+ element: "object";
1085
+ };
1086
+ /**
1087
+ * Defines parameters for an <object> element. This is a void element.
1088
+ * @param props Optional properties for the param element.
1089
+ * @returns A param element node.
1090
+ */
1091
+ export declare const Param: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"param", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"param">) & {
1092
+ element: "param";
1093
+ };
1094
+ /**
1095
+ * Represents an image map, with clickable areas.
1096
+ * @param props Optional properties for the map element.
1097
+ * @returns A map element node.
1098
+ */
1099
+ export declare const MapElement: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"map", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"map">) & {
1100
+ element: "map";
1101
+ };
1102
+ /**
1103
+ * Defines a client-side image map area. This is a void element.
1104
+ * @param props Optional properties for the area element.
1105
+ * @returns An area element node.
1106
+ */
1107
+ export declare const Area: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"area", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"area">) & {
1108
+ element: "area";
1109
+ };
1110
+ // --- Additional Forms Elements ---
1111
+ /**
1112
+ * Contains a set of <option> elements that represent predefined options for other controls.
1113
+ * @param props Optional properties for the datalist element.
1114
+ * @returns A datalist element node.
1115
+ */
1116
+ export declare const Datalist: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"datalist", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"datalist">) & {
1117
+ element: "datalist";
1118
+ };
1119
+ /**
1120
+ * Represents the result of a calculation or user action.
1121
+ * @param props Optional properties for the output element.
1122
+ * @returns An output element node.
1123
+ */
1124
+ export declare const Output: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"output", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"output">) & {
1125
+ element: "output";
1126
+ };
1127
+ /**
1128
+ * Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
1129
+ * @param props Optional properties for the progress element.
1130
+ * @returns A progress element node.
1131
+ */
1132
+ export declare const Progress: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"progress", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"progress">) & {
1133
+ element: "progress";
1134
+ };
1135
+ /**
1136
+ * Represents either a scalar value within a known range or a fractional value.
1137
+ * @param props Optional properties for the meter element.
1138
+ * @returns A meter element node.
1139
+ */
1140
+ export declare const Meter: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"meter", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"meter">) & {
1141
+ element: "meter";
1142
+ };
1143
+ // --- Additional Scripting & Document Elements ---
1144
+ /**
1145
+ * Defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.
1146
+ * @param props Optional properties for the noscript element.
1147
+ * @returns A noscript element node.
1148
+ */
1149
+ export declare const Noscript: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"noscript", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"noscript">) & {
1150
+ element: "noscript";
1151
+ };
1152
+ /**
1153
+ * A mechanism for holding HTML that is not to be rendered immediately when a page is loaded but may be instantiated subsequently during runtime using JavaScript.
1154
+ * @param props Optional properties for the template element.
1155
+ * @returns A template element node.
1156
+ */
1157
+ export declare const Template: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"template", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"template">) & {
1158
+ element: "template";
1159
+ };
1160
+ // --- Additional Sections Elements ---
1161
+ /**
1162
+ * Represents a heading group. It is used to group a set of <h1>–<h6> elements.
1163
+ * @param props Optional properties for the hgroup element.
1164
+ * @returns An hgroup element node.
1165
+ */
1166
+ export declare const Hgroup: (<AdditionalProps extends Record<string, any> = Record<string, any>>(props?: import("../node.type").MergedProps<"hgroup", AdditionalProps> | undefined) => import("../node.type").NodeInstance<"hgroup">) & {
1167
+ element: "hgroup";
1168
+ };
1169
+ //# sourceMappingURL=html.node.d.ts.map