@meonode/ui 0.1.18 → 0.1.19

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.
@@ -4,851 +4,851 @@ import type { NodeElement, NodeProps } from './node.type.js';
4
4
  * @param props Optional properties for the div element.
5
5
  * @returns A div element node.
6
6
  */
7
- export declare const Div: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
7
+ export declare const Div: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
8
8
  /**
9
9
  * Represents a column layout using flexbox.
10
10
  * @param props Optional properties for the column layout.
11
11
  * @returns A div element node with flexbox column layout.
12
12
  */
13
- export declare const Column: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
13
+ export declare const Column: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
14
14
  /**
15
15
  * Represents a row layout using flexbox.
16
16
  * @param props Optional properties for the row layout.
17
17
  * @returns A div element node with flexbox row layout.
18
18
  */
19
- export declare const Row: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
19
+ export declare const Row: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
20
20
  /**
21
21
  * Represents a grid layout.
22
22
  * @param props Optional properties for the grid layout.
23
23
  * @returns A div element node with grid layout.
24
24
  */
25
- export declare const Grid: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
25
+ export declare const Grid: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
26
26
  /**
27
27
  * Represents a centered layout using flexbox.
28
28
  * @param props Optional properties for the centered layout.
29
29
  * @returns A div element node with centered flexbox layout.
30
30
  */
31
- export declare const Center: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
31
+ export declare const Center: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
32
32
  /**
33
33
  * Represents a relatively positioned element.
34
34
  * @param props Optional properties for the relatively positioned element.
35
35
  * @returns A div element node with relative positioning.
36
36
  */
37
- export declare const Relative: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
37
+ export declare const Relative: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
38
38
  /**
39
39
  * Represents an absolutely positioned element.
40
40
  * @param props Optional properties for the absolutely positioned element.
41
41
  * @returns A div element node with absolute positioning.
42
42
  */
43
- export declare const Absolute: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
43
+ export declare const Absolute: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
44
44
  /**
45
45
  * Represents a sticky positioned element.
46
46
  * @param props Optional properties for the sticky positioned element.
47
47
  * @returns A div element node with sticky positioning.
48
48
  */
49
- export declare const Sticky: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
49
+ export declare const Sticky: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
50
50
  /**
51
51
  * Represents a statically positioned element.
52
52
  * @param props Optional properties for the statically positioned element.
53
53
  * @returns A div element node with static positioning.
54
54
  */
55
- export declare const Static: (props?: NodeProps<"div">) => import("./node.type.js").BaseNodeInstance<"div">;
55
+ export declare const Static: (props?: NodeProps<"div">) => import("./node.type.js").NodeInstance<"div">;
56
56
  /**
57
57
  * Creates an h1 heading element node.
58
58
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
59
59
  * @param props Optional properties for the h1 element.
60
60
  * @returns An h1 element node.
61
61
  */
62
- export declare const H1: (children: NodeElement, props?: Omit<NodeProps<"h1">, "children">) => import("./node.type.js").BaseNodeInstance<"h1">;
62
+ export declare const H1: (children: NodeElement, props?: Omit<NodeProps<"h1">, "children">) => import("./node.type.js").NodeInstance<"h1">;
63
63
  /**
64
64
  * Creates an h2 heading element node.
65
65
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
66
66
  * @param props Optional properties for the h2 element.
67
67
  * @returns An h2 element node.
68
68
  */
69
- export declare const H2: (children: NodeElement, props?: Omit<NodeProps<"h2">, "children">) => import("./node.type.js").BaseNodeInstance<"h2">;
69
+ export declare const H2: (children: NodeElement, props?: Omit<NodeProps<"h2">, "children">) => import("./node.type.js").NodeInstance<"h2">;
70
70
  /**
71
71
  * Creates an h3 heading element node.
72
72
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
73
73
  * @param props Optional properties for the h3 element.
74
74
  * @returns An h3 element node.
75
75
  */
76
- export declare const H3: (children: NodeElement, props?: Omit<NodeProps<"h3">, "children">) => import("./node.type.js").BaseNodeInstance<"h3">;
76
+ export declare const H3: (children: NodeElement, props?: Omit<NodeProps<"h3">, "children">) => import("./node.type.js").NodeInstance<"h3">;
77
77
  /**
78
78
  * Creates an h4 heading element node.
79
79
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
80
80
  * @param props Optional properties for the h4 element.
81
81
  * @returns An h4 element node.
82
82
  */
83
- export declare const H4: (children: NodeElement, props?: Omit<NodeProps<"h4">, "children">) => import("./node.type.js").BaseNodeInstance<"h4">;
83
+ export declare const H4: (children: NodeElement, props?: Omit<NodeProps<"h4">, "children">) => import("./node.type.js").NodeInstance<"h4">;
84
84
  /**
85
85
  * Creates an h5 heading element node.
86
86
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
87
87
  * @param props Optional properties for the h5 element.
88
88
  * @returns An h5 element node.
89
89
  */
90
- export declare const H5: (children: NodeElement, props?: Omit<NodeProps<"h5">, "children">) => import("./node.type.js").BaseNodeInstance<"h5">;
90
+ export declare const H5: (children: NodeElement, props?: Omit<NodeProps<"h5">, "children">) => import("./node.type.js").NodeInstance<"h5">;
91
91
  /**
92
92
  * Creates an h6 heading element node.
93
93
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the heading.
94
94
  * @param props Optional properties for the h6 element.
95
95
  * @returns An h6 element node.
96
96
  */
97
- export declare const H6: (children: NodeElement, props?: Omit<NodeProps<"h6">, "children">) => import("./node.type.js").BaseNodeInstance<"h6">;
97
+ export declare const H6: (children: NodeElement, props?: Omit<NodeProps<"h6">, "children">) => import("./node.type.js").NodeInstance<"h6">;
98
98
  /**
99
99
  * Creates a strong element node for important text.
100
100
  * @param children The content to be rendered within the element (text, numbers, components, etc) to emphasize.
101
101
  * @param props Optional properties for the strong element.
102
102
  * @returns A strong element node.
103
103
  */
104
- export declare const Strong: (children: NodeElement, props?: Omit<NodeProps<"strong">, "children">) => import("./node.type.js").BaseNodeInstance<"strong">;
104
+ export declare const Strong: (children: NodeElement, props?: Omit<NodeProps<"strong">, "children">) => import("./node.type.js").NodeInstance<"strong">;
105
105
  /**
106
106
  * Creates an em element node for emphasized text.
107
107
  * @param children The content to be rendered within the element (text, numbers, components, etc) to emphasize.
108
108
  * @param props Optional properties for the em element.
109
109
  * @returns An em element node.
110
110
  */
111
- export declare const Em: (children: NodeElement, props?: Omit<NodeProps<"em">, "children">) => import("./node.type.js").BaseNodeInstance<"em">;
111
+ export declare const Em: (children: NodeElement, props?: Omit<NodeProps<"em">, "children">) => import("./node.type.js").NodeInstance<"em">;
112
112
  /**
113
113
  * Creates a small element node for side-comments and small print.
114
114
  * @param children The content to be rendered within the element (text, numbers, components, etc).
115
115
  * @param props Optional properties for styling and configuring the small element.
116
116
  * @returns A small element node that can be rendered in React.
117
117
  */
118
- export declare const Small: (children: NodeElement, props?: Omit<NodeProps<"small">, "children">) => import("./node.type.js").BaseNodeInstance<"small">;
118
+ export declare const Small: (children: NodeElement, props?: Omit<NodeProps<"small">, "children">) => import("./node.type.js").NodeInstance<"small">;
119
119
  /**
120
120
  * Creates a mark element node for highlighted text.
121
121
  * @param children The content to be rendered within the element (text, numbers, components, etc) to highlight.
122
122
  * @param props Optional properties for the mark element.
123
123
  * @returns A mark element node.
124
124
  */
125
- export declare const Mark: (children: NodeElement, props?: Omit<NodeProps<"mark">, "children">) => import("./node.type.js").BaseNodeInstance<"mark">;
125
+ export declare const Mark: (children: NodeElement, props?: Omit<NodeProps<"mark">, "children">) => import("./node.type.js").NodeInstance<"mark">;
126
126
  /**
127
127
  * Creates a span element node.
128
128
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the span.
129
129
  * @param props Optional properties for the span element.
130
130
  * @returns A span element node.
131
131
  */
132
- export declare const Span: (children: NodeElement, props?: Omit<NodeProps<"span">, "children">) => import("./node.type.js").BaseNodeInstance<"span">;
132
+ export declare const Span: (children: NodeElement, props?: Omit<NodeProps<"span">, "children">) => import("./node.type.js").NodeInstance<"span">;
133
133
  /**
134
134
  * Creates a paragraph element node.
135
135
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the paragraph.
136
136
  * @param props Optional properties for the p element.
137
137
  * @returns A paragraph element node.
138
138
  */
139
- export declare const P: (children: NodeElement, props?: Omit<NodeProps<"p">, "children">) => import("./node.type.js").BaseNodeInstance<"p">;
139
+ export declare const P: (children: NodeElement, props?: Omit<NodeProps<"p">, "children">) => import("./node.type.js").NodeInstance<"p">;
140
140
  /**
141
141
  * Creates a preformatted text element node.
142
142
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the pre element.
143
143
  * @param props Optional properties for the pre element.
144
144
  * @returns A pre element node.
145
145
  */
146
- export declare const Pre: (children: NodeElement, props?: Omit<NodeProps<"pre">, "children">) => import("./node.type.js").BaseNodeInstance<"pre">;
146
+ export declare const Pre: (children: NodeElement, props?: Omit<NodeProps<"pre">, "children">) => import("./node.type.js").NodeInstance<"pre">;
147
147
  /**
148
148
  * Creates a code element node for displaying code snippets.
149
149
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the code.
150
150
  * @param props Optional properties for the code element.
151
151
  * @returns A code element node.
152
152
  */
153
- export declare const Code: (children: NodeElement, props?: Omit<NodeProps<"code">, "children">) => import("./node.type.js").BaseNodeInstance<"code">;
153
+ export declare const Code: (children: NodeElement, props?: Omit<NodeProps<"code">, "children">) => import("./node.type.js").NodeInstance<"code">;
154
154
  /**
155
155
  * Represents a line break element.
156
156
  * @param props Optional properties for the br element.
157
157
  * @returns A br element node.
158
158
  */
159
- export declare const Br: (props?: Omit<NodeProps<"br">, "children">) => import("./node.type.js").BaseNodeInstance<"br">;
159
+ export declare const Br: (props?: Omit<NodeProps<"br">, "children">) => import("./node.type.js").NodeInstance<"br">;
160
160
  /**
161
161
  * Represents an ordered list.
162
162
  * @param props Optional properties for the ol element.
163
163
  * @returns An ol element node.
164
164
  */
165
- export declare const Ol: (props?: NodeProps<"ol">) => import("./node.type.js").BaseNodeInstance<"ol">;
165
+ export declare const Ol: (props?: NodeProps<"ol">) => import("./node.type.js").NodeInstance<"ol">;
166
166
  /**
167
167
  * Represents an unordered list.
168
168
  * @param props Optional properties for the ul element.
169
169
  * @returns A ul element node.
170
170
  */
171
- export declare const Ul: (props?: NodeProps<"ul">) => import("./node.type.js").BaseNodeInstance<"ul">;
171
+ export declare const Ul: (props?: NodeProps<"ul">) => import("./node.type.js").NodeInstance<"ul">;
172
172
  /**
173
173
  * Represents a list item.
174
174
  * @param props Optional properties for the li element.
175
175
  * @returns An li element node.
176
176
  */
177
- export declare const Li: (props?: NodeProps<"li">) => import("./node.type.js").BaseNodeInstance<"li">;
177
+ export declare const Li: (props?: NodeProps<"li">) => import("./node.type.js").NodeInstance<"li">;
178
178
  /**
179
179
  * Represents a description list.
180
180
  * @param props Optional properties for the dl element.
181
181
  * @returns A dl element node.
182
182
  */
183
- export declare const Dl: (props?: NodeProps<"dl">) => import("./node.type.js").BaseNodeInstance<"dl">;
183
+ export declare const Dl: (props?: NodeProps<"dl">) => import("./node.type.js").NodeInstance<"dl">;
184
184
  /**
185
185
  * Represents a term in a description list.
186
186
  * @param props Optional properties for the dt element.
187
187
  * @returns A dt element node.
188
188
  */
189
- export declare const Dt: (props?: NodeProps<"dt">) => import("./node.type.js").BaseNodeInstance<"dt">;
189
+ export declare const Dt: (props?: NodeProps<"dt">) => import("./node.type.js").NodeInstance<"dt">;
190
190
  /**
191
191
  * Represents a description in a description list.
192
192
  * @param props Optional properties for the dd element.
193
193
  * @returns A dd element node.
194
194
  */
195
- export declare const Dd: (props?: NodeProps<"dd">) => import("./node.type.js").BaseNodeInstance<"dd">;
195
+ export declare const Dd: (props?: NodeProps<"dd">) => import("./node.type.js").NodeInstance<"dd">;
196
196
  /**
197
197
  * Represents an HTML form.
198
198
  * @param props Optional properties for the form element.
199
199
  * @returns A form element node.
200
200
  */
201
- export declare const Form: (props?: NodeProps<"form">) => import("./node.type.js").BaseNodeInstance<"form">;
201
+ export declare const Form: (props?: NodeProps<"form">) => import("./node.type.js").NodeInstance<"form">;
202
202
  /**
203
203
  * Represents a label for an input element.
204
204
  * @param props Optional properties for the label element.
205
205
  * @returns A label element node.
206
206
  */
207
- export declare const Label: (props?: NodeProps<"label">) => import("./node.type.js").BaseNodeInstance<"label">;
207
+ export declare const Label: (props?: NodeProps<"label">) => import("./node.type.js").NodeInstance<"label">;
208
208
  /**
209
209
  * Represents an input element.
210
210
  * @param props Optional properties for the input element.
211
211
  * @returns An input element node.
212
212
  */
213
- export declare const Input: (props?: Omit<NodeProps<"input">, "children">) => import("./node.type.js").BaseNodeInstance<"input">;
213
+ export declare const Input: (props?: Omit<NodeProps<"input">, "children">) => import("./node.type.js").NodeInstance<"input">;
214
214
  /**
215
215
  * Creates a button element node.
216
216
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the button.
217
217
  * @param props Optional properties for the button element.
218
218
  * @returns A button element node.
219
219
  */
220
- export declare const Button: (children: NodeElement, props?: Omit<NodeProps<"button">, "children">) => import("./node.type.js").BaseNodeInstance<"button">;
220
+ export declare const Button: (children: NodeElement, props?: Omit<NodeProps<"button">, "children">) => import("./node.type.js").NodeInstance<"button">;
221
221
  /**
222
222
  * Represents a textarea element for multiline text input.
223
223
  * @param props Optional properties for the textarea element.
224
224
  * @returns A textarea element node.
225
225
  */
226
- export declare const Textarea: (props?: NodeProps<"textarea">) => import("./node.type.js").BaseNodeInstance<"textarea">;
226
+ export declare const Textarea: (props?: NodeProps<"textarea">) => import("./node.type.js").NodeInstance<"textarea">;
227
227
  /**
228
228
  * Represents a select dropdown element.
229
229
  * @param props Optional properties for the select element.
230
230
  * @returns A select element node.
231
231
  */
232
- export declare const Select: (props?: NodeProps<"select">) => import("./node.type.js").BaseNodeInstance<"select">;
232
+ export declare const Select: (props?: NodeProps<"select">) => import("./node.type.js").NodeInstance<"select">;
233
233
  /**
234
234
  * Represents an option within a select element.
235
235
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the option.
236
236
  * @param props Optional properties for the option element.
237
237
  * @returns An option element node.
238
238
  */
239
- export declare const Option: (children: NodeElement, props?: Omit<NodeProps<"option">, "children">) => import("./node.type.js").BaseNodeInstance<"option">;
239
+ export declare const Option: (children: NodeElement, props?: Omit<NodeProps<"option">, "children">) => import("./node.type.js").NodeInstance<"option">;
240
240
  /**
241
241
  * Represents a fieldset element for grouping form elements.
242
242
  * @param props Optional properties for the fieldset element.
243
243
  * @returns A fieldset element node.
244
244
  */
245
- export declare const Fieldset: (props?: NodeProps<"fieldset">) => import("./node.type.js").BaseNodeInstance<"fieldset">;
245
+ export declare const Fieldset: (props?: NodeProps<"fieldset">) => import("./node.type.js").NodeInstance<"fieldset">;
246
246
  /**
247
247
  * Represents a legend for a fieldset.
248
248
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the legend.
249
249
  * @param props Optional properties for the legend element.
250
250
  * @returns A legend element node.
251
251
  */
252
- export declare const Legend: (children: NodeElement, props?: Omit<NodeProps<"legend">, "children">) => import("./node.type.js").BaseNodeInstance<"legend">;
252
+ export declare const Legend: (children: NodeElement, props?: Omit<NodeProps<"legend">, "children">) => import("./node.type.js").NodeInstance<"legend">;
253
253
  /**
254
254
  * Represents an option group within a select element.
255
255
  * @param props Optional properties for the optgroup element.
256
256
  * @returns An optgroup element node.
257
257
  */
258
- export declare const Optgroup: (props?: NodeProps<"optgroup">) => import("./node.type.js").BaseNodeInstance<"optgroup">;
258
+ export declare const Optgroup: (props?: NodeProps<"optgroup">) => import("./node.type.js").NodeInstance<"optgroup">;
259
259
  /**
260
260
  * Represents a table element.
261
261
  * @param props Optional properties for the table element.
262
262
  * @returns A table element node.
263
263
  */
264
- export declare const Table: (props?: NodeProps<"table">) => import("./node.type.js").BaseNodeInstance<"table">;
264
+ export declare const Table: (props?: NodeProps<"table">) => import("./node.type.js").NodeInstance<"table">;
265
265
  /**
266
266
  * Represents a table header section.
267
267
  * @param props Optional properties for the thead element.
268
268
  * @returns A thead element node.
269
269
  */
270
- export declare const Thead: (props?: NodeProps<"thead">) => import("./node.type.js").BaseNodeInstance<"thead">;
270
+ export declare const Thead: (props?: NodeProps<"thead">) => import("./node.type.js").NodeInstance<"thead">;
271
271
  /**
272
272
  * Represents a table body section.
273
273
  * @param props Optional properties for the tbody element.
274
274
  * @returns A tbody element node.
275
275
  */
276
- export declare const Tbody: (props?: NodeProps<"tbody">) => import("./node.type.js").BaseNodeInstance<"tbody">;
276
+ export declare const Tbody: (props?: NodeProps<"tbody">) => import("./node.type.js").NodeInstance<"tbody">;
277
277
  /**
278
278
  * Represents a table footer section.
279
279
  * @param props Optional properties for the tfoot element.
280
280
  * @returns A tfoot element node.
281
281
  */
282
- export declare const Tfoot: (props?: NodeProps<"tfoot">) => import("./node.type.js").BaseNodeInstance<"tfoot">;
282
+ export declare const Tfoot: (props?: NodeProps<"tfoot">) => import("./node.type.js").NodeInstance<"tfoot">;
283
283
  /**
284
284
  * Represents a table row.
285
285
  * @param props Optional properties for the tr element.
286
286
  * @returns A tr element node.
287
287
  */
288
- export declare const Tr: (props?: NodeProps<"tr">) => import("./node.type.js").BaseNodeInstance<"tr">;
288
+ export declare const Tr: (props?: NodeProps<"tr">) => import("./node.type.js").NodeInstance<"tr">;
289
289
  /**
290
290
  * Represents a table header cell.
291
291
  * @param props Optional properties for the th element.
292
292
  * @returns A th element node.
293
293
  */
294
- export declare const Th: (props?: NodeProps<"th">) => import("./node.type.js").BaseNodeInstance<"th">;
294
+ export declare const Th: (props?: NodeProps<"th">) => import("./node.type.js").NodeInstance<"th">;
295
295
  /**
296
296
  * Represents a table data cell.
297
297
  * @param props Optional properties for the td element.
298
298
  * @returns A td element node.
299
299
  */
300
- export declare const Td: (props?: NodeProps<"td">) => import("./node.type.js").BaseNodeInstance<"td">;
300
+ export declare const Td: (props?: NodeProps<"td">) => import("./node.type.js").NodeInstance<"td">;
301
301
  /**
302
302
  * Represents a table caption.
303
303
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the caption.
304
304
  * @param props Optional properties for the caption element.
305
305
  * @returns A caption element node.
306
306
  */
307
- export declare const Caption: (children: NodeElement, props?: Omit<NodeProps<"caption">, "children">) => import("./node.type.js").BaseNodeInstance<"caption">;
307
+ export declare const Caption: (children: NodeElement, props?: Omit<NodeProps<"caption">, "children">) => import("./node.type.js").NodeInstance<"caption">;
308
308
  /**
309
309
  * Represents a table column group.
310
310
  * @param props Optional properties for the colgroup element.
311
311
  * @returns A colgroup element node.
312
312
  */
313
- export declare const Colgroup: (props?: NodeProps<"colgroup">) => import("./node.type.js").BaseNodeInstance<"colgroup">;
313
+ export declare const Colgroup: (props?: NodeProps<"colgroup">) => import("./node.type.js").NodeInstance<"colgroup">;
314
314
  /**
315
315
  * Represents a table column.
316
316
  * @param props Optional properties for the col element.
317
317
  * @returns A col element node.
318
318
  */
319
- export declare const Col: (props?: Omit<NodeProps<"col">, "children">) => import("./node.type.js").BaseNodeInstance<"col">;
319
+ export declare const Col: (props?: Omit<NodeProps<"col">, "children">) => import("./node.type.js").NodeInstance<"col">;
320
320
  /**
321
321
  * Represents an image element.
322
322
  * @param props Optional properties for the img element.
323
323
  * @returns An img element node.
324
324
  */
325
- export declare const Img: (props?: Omit<NodeProps<"img">, "children">) => import("./node.type.js").BaseNodeInstance<"img">;
325
+ export declare const Img: (props?: Omit<NodeProps<"img">, "children">) => import("./node.type.js").NodeInstance<"img">;
326
326
  /**
327
327
  * Represents a video element.
328
328
  * @param props Optional properties for the video element.
329
329
  * @returns A video element node.
330
330
  */
331
- export declare const Video: (props?: NodeProps<"video">) => import("./node.type.js").BaseNodeInstance<"video">;
331
+ export declare const Video: (props?: NodeProps<"video">) => import("./node.type.js").NodeInstance<"video">;
332
332
  /**
333
333
  * Represents an audio element.
334
334
  * @param props Optional properties for the audio element.
335
335
  * @returns An audio element node.
336
336
  */
337
- export declare const Audio: (props?: NodeProps<"audio">) => import("./node.type.js").BaseNodeInstance<"audio">;
337
+ export declare const Audio: (props?: NodeProps<"audio">) => import("./node.type.js").NodeInstance<"audio">;
338
338
  /**
339
339
  * Represents a picture element.
340
340
  * @param props Optional properties for the picture element.
341
341
  * @returns A picture element node.
342
342
  */
343
- export declare const Picture: (props?: NodeProps<"picture">) => import("./node.type.js").BaseNodeInstance<"picture">;
343
+ export declare const Picture: (props?: NodeProps<"picture">) => import("./node.type.js").NodeInstance<"picture">;
344
344
  /**
345
345
  * Represents a source element.
346
346
  * @param props Optional properties for the source element.
347
347
  * @returns A source element node.
348
348
  */
349
- export declare const Source: (props?: Omit<NodeProps<"source">, "children">) => import("./node.type.js").BaseNodeInstance<"source">;
349
+ export declare const Source: (props?: Omit<NodeProps<"source">, "children">) => import("./node.type.js").NodeInstance<"source">;
350
350
  /**
351
351
  * Represents a text track element.
352
352
  * @param props Optional properties for the track element.
353
353
  * @returns A track element node.
354
354
  */
355
- export declare const Track: (props?: Omit<NodeProps<"track">, "children">) => import("./node.type.js").BaseNodeInstance<"track">;
355
+ export declare const Track: (props?: Omit<NodeProps<"track">, "children">) => import("./node.type.js").NodeInstance<"track">;
356
356
  /**
357
357
  * Represents a canvas element.
358
358
  * @param props Optional properties for the canvas element.
359
359
  * @returns A canvas element node.
360
360
  */
361
- export declare const Canvas: (props?: NodeProps<"canvas">) => import("./node.type.js").BaseNodeInstance<"canvas">;
361
+ export declare const Canvas: (props?: NodeProps<"canvas">) => import("./node.type.js").NodeInstance<"canvas">;
362
362
  /**
363
363
  * Represents an iframe element.
364
364
  * @param props Optional properties for the iframe element.
365
365
  * @returns An iframe element node.
366
366
  */
367
- export declare const Iframe: (props?: NodeProps<"iframe">) => import("./node.type.js").BaseNodeInstance<"iframe">;
367
+ export declare const Iframe: (props?: NodeProps<"iframe">) => import("./node.type.js").NodeInstance<"iframe">;
368
368
  /**
369
369
  * Represents an SVG container element.
370
370
  * @param props Optional properties for the svg element.
371
371
  * @returns An svg element node.
372
372
  */
373
- export declare const Svg: (props?: NodeProps<"svg">) => import("./node.type.js").BaseNodeInstance<"svg">;
373
+ export declare const Svg: (props?: NodeProps<"svg">) => import("./node.type.js").NodeInstance<"svg">;
374
374
  /**
375
375
  * Represents an SVG path element.
376
376
  * @param props Optional properties for the path element.
377
377
  * @returns A path element node.
378
378
  */
379
- export declare const SvgPath: (props?: NodeProps<"path">) => import("./node.type.js").BaseNodeInstance<"path">;
379
+ export declare const SvgPath: (props?: NodeProps<"path">) => import("./node.type.js").NodeInstance<"path">;
380
380
  /**
381
381
  * Represents an SVG circle element.
382
382
  * @param props Optional properties for the circle element.
383
383
  * @returns A circle element node.
384
384
  */
385
- export declare const SvgCircle: (props?: NodeProps<"circle">) => import("./node.type.js").BaseNodeInstance<"circle">;
385
+ export declare const SvgCircle: (props?: NodeProps<"circle">) => import("./node.type.js").NodeInstance<"circle">;
386
386
  /**
387
387
  * Represents an SVG ellipse element.
388
388
  * @param props Optional properties for the ellipse element.
389
389
  * @returns An ellipse element node.
390
390
  */
391
- export declare const SvgEllipse: (props?: NodeProps<"ellipse">) => import("./node.type.js").BaseNodeInstance<"ellipse">;
391
+ export declare const SvgEllipse: (props?: NodeProps<"ellipse">) => import("./node.type.js").NodeInstance<"ellipse">;
392
392
  /**
393
393
  * Represents an SVG line element.
394
394
  * @param props Optional properties for the line element.
395
395
  * @returns A line element node.
396
396
  */
397
- export declare const SvgLine: (props?: NodeProps<"line">) => import("./node.type.js").BaseNodeInstance<"line">;
397
+ export declare const SvgLine: (props?: NodeProps<"line">) => import("./node.type.js").NodeInstance<"line">;
398
398
  /**
399
399
  * Represents an SVG polyline element.
400
400
  * @param props Optional properties for the polyline element.
401
401
  * @returns A polyline element node.
402
402
  */
403
- export declare const SvgPolyline: (props?: NodeProps<"polyline">) => import("./node.type.js").BaseNodeInstance<"polyline">;
403
+ export declare const SvgPolyline: (props?: NodeProps<"polyline">) => import("./node.type.js").NodeInstance<"polyline">;
404
404
  /**
405
405
  * Represents an SVG polygon element.
406
406
  * @param props Optional properties for the polygon element.
407
407
  * @returns A polygon element node.
408
408
  */
409
- export declare const SvgPolygon: (props?: NodeProps<"polygon">) => import("./node.type.js").BaseNodeInstance<"polygon">;
409
+ export declare const SvgPolygon: (props?: NodeProps<"polygon">) => import("./node.type.js").NodeInstance<"polygon">;
410
410
  /**
411
411
  * Represents an SVG rectangle element.
412
412
  * @param props Optional properties for the rect element.
413
413
  * @returns A rect element node.
414
414
  */
415
- export declare const SvgRect: (props?: NodeProps<"rect">) => import("./node.type.js").BaseNodeInstance<"rect">;
415
+ export declare const SvgRect: (props?: NodeProps<"rect">) => import("./node.type.js").NodeInstance<"rect">;
416
416
  /**
417
417
  * Represents an SVG use element.
418
418
  * @param props Optional properties for the use element.
419
419
  * @returns A use element node.
420
420
  */
421
- export declare const SvgUse: (props?: NodeProps<"use">) => import("./node.type.js").BaseNodeInstance<"use">;
421
+ export declare const SvgUse: (props?: NodeProps<"use">) => import("./node.type.js").NodeInstance<"use">;
422
422
  /**
423
423
  * Represents an SVG definitions element.
424
424
  * @param props Optional properties for the defs element.
425
425
  * @returns A defs element node.
426
426
  */
427
- export declare const SvgDefs: (props?: NodeProps<"defs">) => import("./node.type.js").BaseNodeInstance<"defs">;
427
+ export declare const SvgDefs: (props?: NodeProps<"defs">) => import("./node.type.js").NodeInstance<"defs">;
428
428
  /**
429
429
  * Represents an SVG linear gradient element.
430
430
  * @param props Optional properties for the linearGradient element.
431
431
  * @returns A linearGradient element node.
432
432
  */
433
- export declare const SvgLinearGradient: (props?: NodeProps<"linearGradient">) => import("./node.type.js").BaseNodeInstance<"linearGradient">;
433
+ export declare const SvgLinearGradient: (props?: NodeProps<"linearGradient">) => import("./node.type.js").NodeInstance<"linearGradient">;
434
434
  /**
435
435
  * Represents an SVG radial gradient element.
436
436
  * @param props Optional properties for the radialGradient element.
437
437
  * @returns A radialGradient element node.
438
438
  */
439
- export declare const SvgRadialGradient: (props?: NodeProps<"radialGradient">) => import("./node.type.js").BaseNodeInstance<"radialGradient">;
439
+ export declare const SvgRadialGradient: (props?: NodeProps<"radialGradient">) => import("./node.type.js").NodeInstance<"radialGradient">;
440
440
  /**
441
441
  * Represents an SVG gradient stop element.
442
442
  * @param props Optional properties for the stop element.
443
443
  * @returns A stop element node.
444
444
  */
445
- export declare const SvgStop: (props?: NodeProps<"stop">) => import("./node.type.js").BaseNodeInstance<"stop">;
445
+ export declare const SvgStop: (props?: NodeProps<"stop">) => import("./node.type.js").NodeInstance<"stop">;
446
446
  /**
447
447
  * Represents an SVG symbol element.
448
448
  * @param props Optional properties for the symbol element.
449
449
  * @returns A symbol element node.
450
450
  */
451
- export declare const SvgSymbol: (props?: NodeProps<"symbol">) => import("./node.type.js").BaseNodeInstance<"symbol">;
451
+ export declare const SvgSymbol: (props?: NodeProps<"symbol">) => import("./node.type.js").NodeInstance<"symbol">;
452
452
  /**
453
453
  * Represents an SVG group element.
454
454
  * @param props Optional properties for the g element.
455
455
  * @returns A g element node.
456
456
  */
457
- export declare const SvgG: (props?: NodeProps<"g">) => import("./node.type.js").BaseNodeInstance<"g">;
457
+ export declare const SvgG: (props?: NodeProps<"g">) => import("./node.type.js").NodeInstance<"g">;
458
458
  /**
459
459
  * Represents an SVG text element.
460
460
  * @param props Optional properties for the text element.
461
461
  * @returns A text element node.
462
462
  */
463
- export declare const SvgText: (props?: NodeProps<"text">) => import("./node.type.js").BaseNodeInstance<"text">;
463
+ export declare const SvgText: (props?: NodeProps<"text">) => import("./node.type.js").NodeInstance<"text">;
464
464
  /**
465
465
  * Represents an SVG text span element.
466
466
  * @param props Optional properties for the tspan element.
467
467
  * @returns A tspan element node.
468
468
  */
469
- export declare const SvgTspan: (props?: NodeProps<"tspan">) => import("./node.type.js").BaseNodeInstance<"tspan">;
469
+ export declare const SvgTspan: (props?: NodeProps<"tspan">) => import("./node.type.js").NodeInstance<"tspan">;
470
470
  /**
471
471
  * Represents an anchor element.
472
472
  * @param props Optional properties for the a element.
473
473
  * @returns An a element node.
474
474
  */
475
- export declare const A: (props?: NodeProps<"a">) => import("./node.type.js").BaseNodeInstance<"a">;
475
+ export declare const A: (props?: NodeProps<"a">) => import("./node.type.js").NodeInstance<"a">;
476
476
  /**
477
477
  * Represents a navigation element.
478
478
  * @param props Optional properties for the nav element.
479
479
  * @returns A nav element node.
480
480
  */
481
- export declare const Nav: (props?: NodeProps<"nav">) => import("./node.type.js").BaseNodeInstance<"nav">;
481
+ export declare const Nav: (props?: NodeProps<"nav">) => import("./node.type.js").NodeInstance<"nav">;
482
482
  /**
483
483
  * Represents the body element of an HTML document.
484
484
  * @param props Optional properties for the body element.
485
485
  * @returns A body element node.
486
486
  */
487
- export declare const Body: (props?: NodeProps<"body">) => import("./node.type.js").BaseNodeInstance<"body">;
487
+ export declare const Body: (props?: NodeProps<"body">) => import("./node.type.js").NodeInstance<"body">;
488
488
  /**
489
489
  * Represents the main content of a document.
490
490
  * @param props Optional properties for the main element.
491
491
  * @returns A main element node.
492
492
  */
493
- export declare const Main: (props?: NodeProps<"main">) => import("./node.type.js").BaseNodeInstance<"main">;
493
+ export declare const Main: (props?: NodeProps<"main">) => import("./node.type.js").NodeInstance<"main">;
494
494
  /**
495
495
  * Represents a header element.
496
496
  * @param props Optional properties for the header element.
497
497
  * @returns A header element node.
498
498
  */
499
- export declare const Header: (props?: NodeProps<"header">) => import("./node.type.js").BaseNodeInstance<"header">;
499
+ export declare const Header: (props?: NodeProps<"header">) => import("./node.type.js").NodeInstance<"header">;
500
500
  /**
501
501
  * Represents a footer element.
502
502
  * @param props Optional properties for the footer element.
503
503
  * @returns A footer element node.
504
504
  */
505
- export declare const Footer: (props?: NodeProps<"footer">) => import("./node.type.js").BaseNodeInstance<"footer">;
505
+ export declare const Footer: (props?: NodeProps<"footer">) => import("./node.type.js").NodeInstance<"footer">;
506
506
  /**
507
507
  * Represents an aside element.
508
508
  * @param props Optional properties for the aside element.
509
509
  * @returns An aside element node.
510
510
  */
511
- export declare const Aside: (props?: NodeProps<"aside">) => import("./node.type.js").BaseNodeInstance<"aside">;
511
+ export declare const Aside: (props?: NodeProps<"aside">) => import("./node.type.js").NodeInstance<"aside">;
512
512
  /**
513
513
  * Represents a section element.
514
514
  * @param props Optional properties for the section element.
515
515
  * @returns A section element node.
516
516
  */
517
- export declare const Section: (props?: NodeProps<"section">) => import("./node.type.js").BaseNodeInstance<"section">;
517
+ export declare const Section: (props?: NodeProps<"section">) => import("./node.type.js").NodeInstance<"section">;
518
518
  /**
519
519
  * Represents an article element.
520
520
  * @param props Optional properties for the article element.
521
521
  * @returns An article element node.
522
522
  */
523
- export declare const Article: (props?: NodeProps<"article">) => import("./node.type.js").BaseNodeInstance<"article">;
523
+ export declare const Article: (props?: NodeProps<"article">) => import("./node.type.js").NodeInstance<"article">;
524
524
  /**
525
525
  * Represents a figure element.
526
526
  * @param props Optional properties for the figure element.
527
527
  * @returns A figure element node.
528
528
  */
529
- export declare const Figure: (props?: NodeProps<"figure">) => import("./node.type.js").BaseNodeInstance<"figure">;
529
+ export declare const Figure: (props?: NodeProps<"figure">) => import("./node.type.js").NodeInstance<"figure">;
530
530
  /**
531
531
  * Represents a figure caption element.
532
532
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the figcaption.
533
533
  * @param props Optional properties for the figcaption element.
534
534
  * @returns A figcaption element node.
535
535
  */
536
- export declare const Figcaption: (children: NodeElement, props?: Omit<NodeProps<"figcaption">, "children">) => import("./node.type.js").BaseNodeInstance<"figcaption">;
536
+ export declare const Figcaption: (children: NodeElement, props?: Omit<NodeProps<"figcaption">, "children">) => import("./node.type.js").NodeInstance<"figcaption">;
537
537
  /**
538
538
  * Represents a blockquote element.
539
539
  * @param props Optional properties for the blockquote element.
540
540
  * @returns A blockquote element node.
541
541
  */
542
- export declare const Blockquote: (props?: NodeProps<"blockquote">) => import("./node.type.js").BaseNodeInstance<"blockquote">;
542
+ export declare const Blockquote: (props?: NodeProps<"blockquote">) => import("./node.type.js").NodeInstance<"blockquote">;
543
543
  /**
544
544
  * Represents an address element.
545
545
  * @param props Optional properties for the address element.
546
546
  * @returns An address element node.
547
547
  */
548
- export declare const Address: (props?: NodeProps<"address">) => import("./node.type.js").BaseNodeInstance<"address">;
548
+ export declare const Address: (props?: NodeProps<"address">) => import("./node.type.js").NodeInstance<"address">;
549
549
  /**
550
550
  * Represents a dialog element.
551
551
  * @param props Optional properties for the dialog element.
552
552
  * @returns A dialog element node.
553
553
  */
554
- export declare const Dialog: (props?: NodeProps<"dialog">) => import("./node.type.js").BaseNodeInstance<"dialog">;
554
+ export declare const Dialog: (props?: NodeProps<"dialog">) => import("./node.type.js").NodeInstance<"dialog">;
555
555
  /**
556
556
  * Represents a details element.
557
557
  * @param props Optional properties for the details element.
558
558
  * @returns A details element node.
559
559
  */
560
- export declare const Details: (props?: NodeProps<"details">) => import("./node.type.js").BaseNodeInstance<"details">;
560
+ export declare const Details: (props?: NodeProps<"details">) => import("./node.type.js").NodeInstance<"details">;
561
561
  /**
562
562
  * Represents a summary element for a details disclosure box.
563
563
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the summary.
564
564
  * @param props Optional properties for the summary element.
565
565
  * @returns A summary element node.
566
566
  */
567
- export declare const Summary: (children: NodeElement, props?: Omit<NodeProps<"summary">, "children">) => import("./node.type.js").BaseNodeInstance<"summary">;
567
+ export declare const Summary: (children: NodeElement, props?: Omit<NodeProps<"summary">, "children">) => import("./node.type.js").NodeInstance<"summary">;
568
568
  /**
569
569
  * Represents a head element.
570
570
  * @param props Optional properties for the head element.
571
571
  * @returns A head element node.
572
572
  */
573
- export declare const Head: (props?: NodeProps<"head">) => import("./node.type.js").BaseNodeInstance<"head">;
573
+ export declare const Head: (props?: NodeProps<"head">) => import("./node.type.js").NodeInstance<"head">;
574
574
  /**
575
575
  * Represents the root HTML element.
576
576
  * @param props Optional properties for the HTML element.
577
577
  * @returns An HTML element node.
578
578
  */
579
- export declare const Html: (props?: NodeProps<"html">) => import("./node.type.js").BaseNodeInstance<"html">;
579
+ export declare const Html: (props?: NodeProps<"html">) => import("./node.type.js").NodeInstance<"html">;
580
580
  /**
581
581
  * Represents a meta element.
582
582
  * @param props Optional properties for the meta element.
583
583
  * @returns A meta element node.
584
584
  */
585
- export declare const Meta: (props?: Omit<NodeProps<"meta">, "children">) => import("./node.type.js").BaseNodeInstance<"meta">;
585
+ export declare const Meta: (props?: Omit<NodeProps<"meta">, "children">) => import("./node.type.js").NodeInstance<"meta">;
586
586
  /**
587
587
  * Represents a link element.
588
588
  * @param props Optional properties for the link element.
589
589
  * @returns A link element node.
590
590
  */
591
- export declare const Link: (props?: Omit<NodeProps<"link">, "children">) => import("./node.type.js").BaseNodeInstance<"link">;
591
+ export declare const Link: (props?: Omit<NodeProps<"link">, "children">) => import("./node.type.js").NodeInstance<"link">;
592
592
  /**
593
593
  * Represents a style element. Its content should be CSS text.
594
594
  * @param cssText Optional CSS code as a string.
595
595
  * @param props Optional properties for the style element.
596
596
  * @returns A style element node.
597
597
  */
598
- export declare const Style: (cssText?: string, props?: Omit<NodeProps<"style">, "children">) => import("./node.type.js").BaseNodeInstance<"style">;
598
+ export declare const Style: (cssText?: string, props?: Omit<NodeProps<"style">, "children">) => import("./node.type.js").NodeInstance<"style">;
599
599
  /**
600
600
  * Represents a script element. For inline scripts, its content should be JavaScript text.
601
601
  * @param scriptContent Optional JavaScript code as a string for inline scripts.
602
602
  * @param props Optional properties for the script element (e.g., src, type, async, defer).
603
603
  * @returns A script element node.
604
604
  */
605
- export declare const Script: (scriptContent?: string, props?: Omit<NodeProps<"script">, "children">) => import("./node.type.js").BaseNodeInstance<"script">;
605
+ export declare const Script: (scriptContent?: string, props?: Omit<NodeProps<"script">, "children">) => import("./node.type.js").NodeInstance<"script">;
606
606
  /**
607
607
  * Creates a title element node for document head title.
608
608
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the title.
609
609
  * @param props Optional properties for the title element.
610
610
  * @returns A title element node.
611
611
  */
612
- export declare const Title: (children: NodeElement, props?: Omit<NodeProps<"title">, "children">) => import("./node.type.js").BaseNodeInstance<"title">;
612
+ export declare const Title: (children: NodeElement, props?: Omit<NodeProps<"title">, "children">) => import("./node.type.js").NodeInstance<"title">;
613
613
  /**
614
614
  * Represents a base element.
615
615
  * @param props Optional properties for the base element.
616
616
  * @returns A base element node.
617
617
  */
618
- export declare const Base: (props?: Omit<NodeProps<"base">, "children">) => import("./node.type.js").BaseNodeInstance<"base">;
618
+ export declare const Base: (props?: Omit<NodeProps<"base">, "children">) => import("./node.type.js").NodeInstance<"base">;
619
619
  /**
620
620
  * Represents an abbreviation or acronym.
621
621
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the abbreviation.
622
622
  * @param props Optional properties for the abbr element.
623
623
  * @returns An abbr element node.
624
624
  */
625
- export declare const Abbr: (children: NodeElement, props?: Omit<NodeProps<"abbr">, "children">) => import("./node.type.js").BaseNodeInstance<"abbr">;
625
+ export declare const Abbr: (children: NodeElement, props?: Omit<NodeProps<"abbr">, "children">) => import("./node.type.js").NodeInstance<"abbr">;
626
626
  /**
627
627
  * Represents text that should be stylistically offset from normal prose (traditionally bold).
628
628
  * @param children The content to be rendered within the element (text, numbers, components, etc).
629
629
  * @param props Optional properties for the b element.
630
630
  * @returns A b element node.
631
631
  */
632
- export declare const B: (children: NodeElement, props?: Omit<NodeProps<"b">, "children">) => import("./node.type.js").BaseNodeInstance<"b">;
632
+ export declare const B: (children: NodeElement, props?: Omit<NodeProps<"b">, "children">) => import("./node.type.js").NodeInstance<"b">;
633
633
  /**
634
634
  * Represents text that is isolated from its surroundings for bidirectional text formatting.
635
635
  * @param children The content to be rendered within the element (text, numbers, components, etc).
636
636
  * @param props Optional properties for the bdi element.
637
637
  * @returns A bdi element node.
638
638
  */
639
- export declare const Bdi: (children: NodeElement, props?: Omit<NodeProps<"bdi">, "children">) => import("./node.type.js").BaseNodeInstance<"bdi">;
639
+ export declare const Bdi: (children: NodeElement, props?: Omit<NodeProps<"bdi">, "children">) => import("./node.type.js").NodeInstance<"bdi">;
640
640
  /**
641
641
  * Overrides the current text directionality.
642
642
  * @param children The content to be rendered within the element (text, numbers, components, etc).
643
643
  * @param props Optional properties for the bdo element.
644
644
  * @returns A bdo element node.
645
645
  */
646
- export declare const Bdo: (children: NodeElement, props?: Omit<NodeProps<"bdo">, "children">) => import("./node.type.js").BaseNodeInstance<"bdo">;
646
+ export declare const Bdo: (children: NodeElement, props?: Omit<NodeProps<"bdo">, "children">) => import("./node.type.js").NodeInstance<"bdo">;
647
647
  /**
648
648
  * Represents the title of a work (e.g., a book, a song, an essay).
649
649
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the citation.
650
650
  * @param props Optional properties for the cite element.
651
651
  * @returns A cite element node.
652
652
  */
653
- export declare const Cite: (children: NodeElement, props?: Omit<NodeProps<"cite">, "children">) => import("./node.type.js").BaseNodeInstance<"cite">;
653
+ export declare const Cite: (children: NodeElement, props?: Omit<NodeProps<"cite">, "children">) => import("./node.type.js").NodeInstance<"cite">;
654
654
  /**
655
655
  * Links a piece of content with a machine-readable translation.
656
656
  * @param children The content to be rendered within the element (text, numbers, components, etc).
657
657
  * @param props Optional properties for the data element.
658
658
  * @returns A data element node.
659
659
  */
660
- export declare const Data: (children: NodeElement, props?: Omit<NodeProps<"data">, "children">) => import("./node.type.js").BaseNodeInstance<"data">;
660
+ export declare const Data: (children: NodeElement, props?: Omit<NodeProps<"data">, "children">) => import("./node.type.js").NodeInstance<"data">;
661
661
  /**
662
662
  * Represents a definition of a term.
663
663
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the definition.
664
664
  * @param props Optional properties for the dfn element.
665
665
  * @returns A dfn element node.
666
666
  */
667
- export declare const Dfn: (children: NodeElement, props?: Omit<NodeProps<"dfn">, "children">) => import("./node.type.js").BaseNodeInstance<"dfn">;
667
+ export declare const Dfn: (children: NodeElement, props?: Omit<NodeProps<"dfn">, "children">) => import("./node.type.js").NodeInstance<"dfn">;
668
668
  /**
669
669
  * Represents text in an alternate voice or mood (traditionally italic).
670
670
  * @param children The content to be rendered within the element (text, numbers, components, etc).
671
671
  * @param props Optional properties for the i element.
672
672
  * @returns An i element node.
673
673
  */
674
- export declare const I: (children: NodeElement, props?: Omit<NodeProps<"i">, "children">) => import("./node.type.js").BaseNodeInstance<"i">;
674
+ export declare const I: (children: NodeElement, props?: Omit<NodeProps<"i">, "children">) => import("./node.type.js").NodeInstance<"i">;
675
675
  /**
676
676
  * Represents user input (typically keyboard input).
677
677
  * @param children The content to be rendered within the element (text, numbers, components, etc) representing keyboard input.
678
678
  * @param props Optional properties for the kbd element.
679
679
  * @returns A kbd element node.
680
680
  */
681
- export declare const Kbd: (children: NodeElement, props?: Omit<NodeProps<"kbd">, "children">) => import("./node.type.js").BaseNodeInstance<"kbd">;
681
+ export declare const Kbd: (children: NodeElement, props?: Omit<NodeProps<"kbd">, "children">) => import("./node.type.js").NodeInstance<"kbd">;
682
682
  /**
683
683
  * Represents an inline quotation.
684
684
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the quotation.
685
685
  * @param props Optional properties for the q element.
686
686
  * @returns A q element node.
687
687
  */
688
- export declare const Q: (children: NodeElement, props?: Omit<NodeProps<"q">, "children">) => import("./node.type.js").BaseNodeInstance<"q">;
688
+ export declare const Q: (children: NodeElement, props?: Omit<NodeProps<"q">, "children">) => import("./node.type.js").NodeInstance<"q">;
689
689
  /**
690
690
  * Represents fallback parenthesis for ruby annotations.
691
691
  * @param children The content to be rendered within the element (text, numbers, components, etc).
692
692
  * @param props Optional properties for the rp element.
693
693
  * @returns An rp element node.
694
694
  */
695
- export declare const Rp: (children: NodeElement, props?: Omit<NodeProps<"rp">, "children">) => import("./node.type.js").BaseNodeInstance<"rp">;
695
+ export declare const Rp: (children: NodeElement, props?: Omit<NodeProps<"rp">, "children">) => import("./node.type.js").NodeInstance<"rp">;
696
696
  /**
697
697
  * Represents the ruby text component of a ruby annotation.
698
698
  * @param children The content to be rendered within the element (text, numbers, components, etc).
699
699
  * @param props Optional properties for the rt element.
700
700
  * @returns An rt element node.
701
701
  */
702
- export declare const Rt: (children: NodeElement, props?: Omit<NodeProps<"rt">, "children">) => import("./node.type.js").BaseNodeInstance<"rt">;
702
+ export declare const Rt: (children: NodeElement, props?: Omit<NodeProps<"rt">, "children">) => import("./node.type.js").NodeInstance<"rt">;
703
703
  /**
704
704
  * Represents a ruby annotation.
705
705
  * @param props Optional properties for the ruby element.
706
706
  * @returns A ruby element node.
707
707
  */
708
- export declare const Ruby: (props?: NodeProps<"ruby">) => import("./node.type.js").BaseNodeInstance<"ruby">;
708
+ export declare const Ruby: (props?: NodeProps<"ruby">) => import("./node.type.js").NodeInstance<"ruby">;
709
709
  /**
710
710
  * Represents text that is no longer accurate or relevant (strikethrough).
711
711
  * @param children The content to be rendered within the element (text, numbers, components, etc) to be struck through.
712
712
  * @param props Optional properties for the s element.
713
713
  * @returns An s element node.
714
714
  */
715
- export declare const S: (children: NodeElement, props?: Omit<NodeProps<"s">, "children">) => import("./node.type.js").BaseNodeInstance<"s">;
715
+ export declare const S: (children: NodeElement, props?: Omit<NodeProps<"s">, "children">) => import("./node.type.js").NodeInstance<"s">;
716
716
  /**
717
717
  * Represents sample output from a computer program.
718
718
  * @param children The content to be rendered within the element (text, numbers, components, etc) representing sample output.
719
719
  * @param props Optional properties for the samp element.
720
720
  * @returns A samp element node.
721
721
  */
722
- export declare const Samp: (children: NodeElement, props?: Omit<NodeProps<"samp">, "children">) => import("./node.type.js").BaseNodeInstance<"samp">;
722
+ export declare const Samp: (children: NodeElement, props?: Omit<NodeProps<"samp">, "children">) => import("./node.type.js").NodeInstance<"samp">;
723
723
  /**
724
724
  * Represents subscript text.
725
725
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the subscript.
726
726
  * @param props Optional properties for the sub element.
727
727
  * @returns A sub element node.
728
728
  */
729
- export declare const Sub: (children: NodeElement, props?: Omit<NodeProps<"sub">, "children">) => import("./node.type.js").BaseNodeInstance<"sub">;
729
+ export declare const Sub: (children: NodeElement, props?: Omit<NodeProps<"sub">, "children">) => import("./node.type.js").NodeInstance<"sub">;
730
730
  /**
731
731
  * Represents superscript text.
732
732
  * @param children The content to be rendered within the element (text, numbers, components, etc) for the superscript.
733
733
  * @param props Optional properties for the sup element.
734
734
  * @returns A sup element node.
735
735
  */
736
- export declare const Sup: (children: NodeElement, props?: Omit<NodeProps<"sup">, "children">) => import("./node.type.js").BaseNodeInstance<"sup">;
736
+ export declare const Sup: (children: NodeElement, props?: Omit<NodeProps<"sup">, "children">) => import("./node.type.js").NodeInstance<"sup">;
737
737
  /**
738
738
  * Represents a specific period in time or a date.
739
739
  * @param children The content to be rendered within the element (text, numbers, components, etc) representing the time/date.
740
740
  * @param props Optional properties for the time element.
741
741
  * @returns A time element node.
742
742
  */
743
- export declare const Time: (children: NodeElement, props?: Omit<NodeProps<"time">, "children">) => import("./node.type.js").BaseNodeInstance<"time">;
743
+ export declare const Time: (children: NodeElement, props?: Omit<NodeProps<"time">, "children">) => import("./node.type.js").NodeInstance<"time">;
744
744
  /**
745
745
  * Represents text that should be rendered with an unarticulated, non-textual annotation (traditionally underline).
746
746
  * @param children The content to be rendered within the element (text, numbers, components, etc) to be underlined.
747
747
  * @param props Optional properties for the u element.
748
748
  * @returns A u element node.
749
749
  */
750
- export declare const U: (children: NodeElement, props?: Omit<NodeProps<"u">, "children">) => import("./node.type.js").BaseNodeInstance<"u">;
750
+ export declare const U: (children: NodeElement, props?: Omit<NodeProps<"u">, "children">) => import("./node.type.js").NodeInstance<"u">;
751
751
  /**
752
752
  * Represents a variable in a mathematical expression or programming context.
753
753
  * @param children The content to be rendered within the element (text, numbers, components, etc) representing a variable.
754
754
  * @param props Optional properties for the var element.
755
755
  * @returns A var element node.
756
756
  */
757
- export declare const Var: (children: NodeElement, props?: Omit<NodeProps<"var">, "children">) => import("./node.type.js").BaseNodeInstance<"var">;
757
+ export declare const Var: (children: NodeElement, props?: Omit<NodeProps<"var">, "children">) => import("./node.type.js").NodeInstance<"var">;
758
758
  /**
759
759
  * Represents a word break opportunity. This is a void element.
760
760
  * @param props Optional properties for the wbr element.
761
761
  * @returns A wbr element node.
762
762
  */
763
- export declare const Wbr: (props?: Omit<NodeProps<"wbr">, "children">) => import("./node.type.js").BaseNodeInstance<"wbr">;
763
+ export declare const Wbr: (props?: Omit<NodeProps<"wbr">, "children">) => import("./node.type.js").NodeInstance<"wbr">;
764
764
  /**
765
765
  * 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.
766
766
  * @param props Optional properties for the hr element.
767
767
  * @returns An hr element node.
768
768
  */
769
- export declare const Hr: (props?: Omit<NodeProps<"hr">, "children">) => import("./node.type.js").BaseNodeInstance<"hr">;
769
+ export declare const Hr: (props?: Omit<NodeProps<"hr">, "children">) => import("./node.type.js").NodeInstance<"hr">;
770
770
  /**
771
771
  * Represents a group of commands that a user can perform or activate.
772
772
  * @param props Optional properties for the menu element.
773
773
  * @returns A menu element node.
774
774
  */
775
- export declare const Menu: (props?: NodeProps<"menu">) => import("./node.type.js").BaseNodeInstance<"menu">;
775
+ export declare const Menu: (props?: NodeProps<"menu">) => import("./node.type.js").NodeInstance<"menu">;
776
776
  /**
777
777
  * Represents the parts of a document or application that contain search or filtering controls.
778
778
  * @param props Optional properties for the search element.
779
779
  * @returns A search element node.
780
780
  */
781
- export declare const Search: (props?: NodeProps<"search">) => import("./node.type.js").BaseNodeInstance<"search">;
781
+ export declare const Search: (props?: NodeProps<"search">) => import("./node.type.js").NodeInstance<"search">;
782
782
  /**
783
783
  * Represents an integration point for an external application or interactive content (a plug-in). This is a void element.
784
784
  * @param props Optional properties for the embed element.
785
785
  * @returns An embed element node.
786
786
  */
787
- export declare const Embed: (props?: Omit<NodeProps<"embed">, "children">) => import("./node.type.js").BaseNodeInstance<"embed">;
787
+ export declare const Embed: (props?: Omit<NodeProps<"embed">, "children">) => import("./node.type.js").NodeInstance<"embed">;
788
788
  /**
789
789
  * Represents an external resource, which can be treated as an image, a nested browsing context, or content to be handled by a plugin.
790
790
  * @param props Optional properties for the object element.
791
791
  * @returns An object element node.
792
792
  */
793
- export declare const ObjectElement: (props?: NodeProps<"object">) => import("./node.type.js").BaseNodeInstance<"object">;
793
+ export declare const ObjectElement: (props?: NodeProps<"object">) => import("./node.type.js").NodeInstance<"object">;
794
794
  /**
795
795
  * Defines parameters for an <object> element. This is a void element.
796
796
  * @param props Optional properties for the param element.
797
797
  * @returns A param element node.
798
798
  */
799
- export declare const Param: (props?: Omit<NodeProps<"param">, "children">) => import("./node.type.js").BaseNodeInstance<"param">;
799
+ export declare const Param: (props?: Omit<NodeProps<"param">, "children">) => import("./node.type.js").NodeInstance<"param">;
800
800
  /**
801
801
  * Represents an image map, with clickable areas.
802
802
  * @param props Optional properties for the map element.
803
803
  * @returns A map element node.
804
804
  */
805
- export declare const MapElement: (props?: NodeProps<"map">) => import("./node.type.js").BaseNodeInstance<"map">;
805
+ export declare const MapElement: (props?: NodeProps<"map">) => import("./node.type.js").NodeInstance<"map">;
806
806
  /**
807
807
  * Defines a client-side image map area. This is a void element.
808
808
  * @param props Optional properties for the area element.
809
809
  * @returns An area element node.
810
810
  */
811
- export declare const Area: (props?: Omit<NodeProps<"area">, "children">) => import("./node.type.js").BaseNodeInstance<"area">;
811
+ export declare const Area: (props?: Omit<NodeProps<"area">, "children">) => import("./node.type.js").NodeInstance<"area">;
812
812
  /**
813
813
  * Contains a set of <option> elements that represent predefined options for other controls.
814
814
  * @param props Optional properties for the datalist element.
815
815
  * @returns A datalist element node.
816
816
  */
817
- export declare const Datalist: (props?: NodeProps<"datalist">) => import("./node.type.js").BaseNodeInstance<"datalist">;
817
+ export declare const Datalist: (props?: NodeProps<"datalist">) => import("./node.type.js").NodeInstance<"datalist">;
818
818
  /**
819
819
  * Represents the result of a calculation or user action.
820
820
  * @param props Optional properties for the output element.
821
821
  * @returns An output element node.
822
822
  */
823
- export declare const Output: (props?: NodeProps<"output">) => import("./node.type.js").BaseNodeInstance<"output">;
823
+ export declare const Output: (props?: NodeProps<"output">) => import("./node.type.js").NodeInstance<"output">;
824
824
  /**
825
825
  * Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
826
826
  * @param props Optional properties for the progress element.
827
827
  * @returns A progress element node.
828
828
  */
829
- export declare const Progress: (props?: NodeProps<"progress">) => import("./node.type.js").BaseNodeInstance<"progress">;
829
+ export declare const Progress: (props?: NodeProps<"progress">) => import("./node.type.js").NodeInstance<"progress">;
830
830
  /**
831
831
  * Represents either a scalar value within a known range or a fractional value.
832
832
  * @param props Optional properties for the meter element.
833
833
  * @returns A meter element node.
834
834
  */
835
- export declare const Meter: (props?: NodeProps<"meter">) => import("./node.type.js").BaseNodeInstance<"meter">;
835
+ export declare const Meter: (props?: NodeProps<"meter">) => import("./node.type.js").NodeInstance<"meter">;
836
836
  /**
837
837
  * 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.
838
838
  * @param props Optional properties for the noscript element.
839
839
  * @returns A noscript element node.
840
840
  */
841
- export declare const Noscript: (props?: NodeProps<"noscript">) => import("./node.type.js").BaseNodeInstance<"noscript">;
841
+ export declare const Noscript: (props?: NodeProps<"noscript">) => import("./node.type.js").NodeInstance<"noscript">;
842
842
  /**
843
843
  * 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.
844
844
  * @param props Optional properties for the template element.
845
845
  * @returns A template element node.
846
846
  */
847
- export declare const Template: (props?: NodeProps<"template">) => import("./node.type.js").BaseNodeInstance<"template">;
847
+ export declare const Template: (props?: NodeProps<"template">) => import("./node.type.js").NodeInstance<"template">;
848
848
  /**
849
849
  * Represents a heading group. It is used to group a set of <h1>–<h6> elements.
850
850
  * @param props Optional properties for the hgroup element.
851
851
  * @returns An hgroup element node.
852
852
  */
853
- export declare const Hgroup: (props?: NodeProps<"hgroup">) => import("./node.type.js").BaseNodeInstance<"hgroup">;
853
+ export declare const Hgroup: (props?: NodeProps<"hgroup">) => import("./node.type.js").NodeInstance<"hgroup">;
854
854
  //# sourceMappingURL=html.node.d.ts.map