@meonode/ui 0.2.0 → 0.2.2
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.
- package/README.md +3 -3
- package/dist/components/styled-renderer.client.d.ts +10 -11
- package/dist/components/styled-renderer.client.d.ts.map +1 -1
- package/dist/components/styled-renderer.client.js +1 -1
- package/dist/core.node.d.ts.map +1 -1
- package/dist/core.node.js +4 -4
- package/dist/html.node.d.ts +276 -276
- package/dist/node.type.d.ts +5 -3
- package/dist/node.type.d.ts.map +1 -1
- package/dist/node.type.js +1 -1
- package/package.json +1 -1
package/dist/html.node.d.ts
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
* @returns A div element node.
|
|
6
6
|
*/
|
|
7
7
|
export declare const Div: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
8
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
8
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
9
9
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
10
10
|
theme: Partial<{
|
|
11
11
|
[key: string]: any;
|
|
12
12
|
}>;
|
|
13
|
-
css: import("@emotion/serialize").
|
|
13
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
14
14
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
15
15
|
/**
|
|
16
16
|
* Represents a root div element with full viewport dimensions and column flex layout.
|
|
@@ -24,12 +24,12 @@ export declare const Div: <AdditionalProps extends Record<string, any> = Record<
|
|
|
24
24
|
* })
|
|
25
25
|
*/
|
|
26
26
|
export declare const Root: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
27
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
27
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
28
28
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
29
29
|
theme: Partial<{
|
|
30
30
|
[key: string]: any;
|
|
31
31
|
}>;
|
|
32
|
-
css: import("@emotion/serialize").
|
|
32
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
33
33
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
34
34
|
/**
|
|
35
35
|
* Represents a column layout using flexbox.
|
|
@@ -37,12 +37,12 @@ export declare const Root: <AdditionalProps extends Record<string, any> = Record
|
|
|
37
37
|
* @returns A div element node with flexbox column layout.
|
|
38
38
|
*/
|
|
39
39
|
export declare const Column: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
40
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
40
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
41
41
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
42
42
|
theme: Partial<{
|
|
43
43
|
[key: string]: any;
|
|
44
44
|
}>;
|
|
45
|
-
css: import("@emotion/serialize").
|
|
45
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
46
46
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
47
47
|
/**
|
|
48
48
|
* Represents a row layout using flexbox.
|
|
@@ -50,12 +50,12 @@ export declare const Column: <AdditionalProps extends Record<string, any> = Reco
|
|
|
50
50
|
* @returns A div element node with flexbox row layout.
|
|
51
51
|
*/
|
|
52
52
|
export declare const Row: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
53
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
53
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
54
54
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
55
55
|
theme: Partial<{
|
|
56
56
|
[key: string]: any;
|
|
57
57
|
}>;
|
|
58
|
-
css: import("@emotion/serialize").
|
|
58
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
59
59
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
60
60
|
/**
|
|
61
61
|
* Represents a grid layout.
|
|
@@ -63,12 +63,12 @@ export declare const Row: <AdditionalProps extends Record<string, any> = Record<
|
|
|
63
63
|
* @returns A div element node with grid layout.
|
|
64
64
|
*/
|
|
65
65
|
export declare const Grid: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
66
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
66
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
67
67
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
68
68
|
theme: Partial<{
|
|
69
69
|
[key: string]: any;
|
|
70
70
|
}>;
|
|
71
|
-
css: import("@emotion/serialize").
|
|
71
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
72
72
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
73
73
|
/**
|
|
74
74
|
* Represents a centered container with flexbox alignment.
|
|
@@ -77,12 +77,12 @@ export declare const Grid: <AdditionalProps extends Record<string, any> = Record
|
|
|
77
77
|
* @returns A div element node configured for centered content.
|
|
78
78
|
*/
|
|
79
79
|
export declare const Center: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
80
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
80
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
81
81
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
82
82
|
theme: Partial<{
|
|
83
83
|
[key: string]: any;
|
|
84
84
|
}>;
|
|
85
|
-
css: import("@emotion/serialize").
|
|
85
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
86
86
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
87
87
|
/**
|
|
88
88
|
* Represents a fixed positioned element.
|
|
@@ -90,12 +90,12 @@ export declare const Center: <AdditionalProps extends Record<string, any> = Reco
|
|
|
90
90
|
* @returns A div element node with fixed positioning.
|
|
91
91
|
*/
|
|
92
92
|
export declare const Fixed: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
93
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
93
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
94
94
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
95
95
|
theme: Partial<{
|
|
96
96
|
[key: string]: any;
|
|
97
97
|
}>;
|
|
98
|
-
css: import("@emotion/serialize").
|
|
98
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
99
99
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
100
100
|
/**
|
|
101
101
|
* Represents a relatively positioned element.
|
|
@@ -103,12 +103,12 @@ export declare const Fixed: <AdditionalProps extends Record<string, any> = Recor
|
|
|
103
103
|
* @returns A div element node with relative positioning.
|
|
104
104
|
*/
|
|
105
105
|
export declare const Relative: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
106
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
106
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
107
107
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
108
108
|
theme: Partial<{
|
|
109
109
|
[key: string]: any;
|
|
110
110
|
}>;
|
|
111
|
-
css: import("@emotion/serialize").
|
|
111
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
112
112
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
113
113
|
/**
|
|
114
114
|
* Represents an absolutely positioned element.
|
|
@@ -116,12 +116,12 @@ export declare const Relative: <AdditionalProps extends Record<string, any> = Re
|
|
|
116
116
|
* @returns A div element node with absolute positioning.
|
|
117
117
|
*/
|
|
118
118
|
export declare const Absolute: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
119
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
119
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
120
120
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
121
121
|
theme: Partial<{
|
|
122
122
|
[key: string]: any;
|
|
123
123
|
}>;
|
|
124
|
-
css: import("@emotion/serialize").
|
|
124
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
125
125
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
126
126
|
/**
|
|
127
127
|
* Represents a sticky positioned element.
|
|
@@ -129,12 +129,12 @@ export declare const Absolute: <AdditionalProps extends Record<string, any> = Re
|
|
|
129
129
|
* @returns A div element node with sticky positioning.
|
|
130
130
|
*/
|
|
131
131
|
export declare const Sticky: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
132
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
132
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
133
133
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
134
134
|
theme: Partial<{
|
|
135
135
|
[key: string]: any;
|
|
136
136
|
}>;
|
|
137
|
-
css: import("@emotion/serialize").
|
|
137
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
138
138
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
139
139
|
/**
|
|
140
140
|
* Represents a statically positioned element.
|
|
@@ -142,12 +142,12 @@ export declare const Sticky: <AdditionalProps extends Record<string, any> = Reco
|
|
|
142
142
|
* @returns A div element node with static positioning.
|
|
143
143
|
*/
|
|
144
144
|
export declare const Static: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
145
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children"
|
|
145
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children">>;
|
|
146
146
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
147
147
|
theme: Partial<{
|
|
148
148
|
[key: string]: any;
|
|
149
149
|
}>;
|
|
150
|
-
css: import("@emotion/serialize").
|
|
150
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
151
151
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"div">;
|
|
152
152
|
// Typography
|
|
153
153
|
/**
|
|
@@ -157,12 +157,12 @@ export declare const Static: <AdditionalProps extends Record<string, any> = Reco
|
|
|
157
157
|
* @returns An h1 element node.
|
|
158
158
|
*/
|
|
159
159
|
export declare const H1: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
160
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children"
|
|
160
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
161
161
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
162
162
|
theme: Partial<{
|
|
163
163
|
[key: string]: any;
|
|
164
164
|
}>;
|
|
165
|
-
css: import("@emotion/serialize").
|
|
165
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
166
166
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h1">;
|
|
167
167
|
/**
|
|
168
168
|
* Creates an h2 heading element node.
|
|
@@ -171,12 +171,12 @@ export declare const H1: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
171
171
|
* @returns An h2 element node.
|
|
172
172
|
*/
|
|
173
173
|
export declare const H2: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
174
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children"
|
|
174
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
175
175
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
176
176
|
theme: Partial<{
|
|
177
177
|
[key: string]: any;
|
|
178
178
|
}>;
|
|
179
|
-
css: import("@emotion/serialize").
|
|
179
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
180
180
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h2">;
|
|
181
181
|
/**
|
|
182
182
|
* Creates an h3 heading element node.
|
|
@@ -185,12 +185,12 @@ export declare const H2: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
185
185
|
* @returns An h3 element node.
|
|
186
186
|
*/
|
|
187
187
|
export declare const H3: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
188
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children"
|
|
188
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
189
189
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
190
190
|
theme: Partial<{
|
|
191
191
|
[key: string]: any;
|
|
192
192
|
}>;
|
|
193
|
-
css: import("@emotion/serialize").
|
|
193
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
194
194
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h3">;
|
|
195
195
|
/**
|
|
196
196
|
* Creates an h4 heading element node.
|
|
@@ -199,12 +199,12 @@ export declare const H3: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
199
199
|
* @returns An h4 element node.
|
|
200
200
|
*/
|
|
201
201
|
export declare const H4: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
202
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children"
|
|
202
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
203
203
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
204
204
|
theme: Partial<{
|
|
205
205
|
[key: string]: any;
|
|
206
206
|
}>;
|
|
207
|
-
css: import("@emotion/serialize").
|
|
207
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
208
208
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h4">;
|
|
209
209
|
/**
|
|
210
210
|
* Creates an h5 heading element node.
|
|
@@ -213,12 +213,12 @@ export declare const H4: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
213
213
|
* @returns An h5 element node.
|
|
214
214
|
*/
|
|
215
215
|
export declare const H5: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
216
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children"
|
|
216
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
217
217
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
218
218
|
theme: Partial<{
|
|
219
219
|
[key: string]: any;
|
|
220
220
|
}>;
|
|
221
|
-
css: import("@emotion/serialize").
|
|
221
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
222
222
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h5">;
|
|
223
223
|
/**
|
|
224
224
|
* Creates an h6 heading element node.
|
|
@@ -227,12 +227,12 @@ export declare const H5: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
227
227
|
* @returns An h6 element node.
|
|
228
228
|
*/
|
|
229
229
|
export declare const H6: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
230
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children"
|
|
230
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "children">>;
|
|
231
231
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
232
232
|
theme: Partial<{
|
|
233
233
|
[key: string]: any;
|
|
234
234
|
}>;
|
|
235
|
-
css: import("@emotion/serialize").
|
|
235
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
236
236
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"h6">;
|
|
237
237
|
/**
|
|
238
238
|
* Creates a strong element node for important text.
|
|
@@ -241,12 +241,12 @@ export declare const H6: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
241
241
|
* @returns A strong element node.
|
|
242
242
|
*/
|
|
243
243
|
export declare const Strong: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
244
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
244
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
245
245
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
246
246
|
theme: Partial<{
|
|
247
247
|
[key: string]: any;
|
|
248
248
|
}>;
|
|
249
|
-
css: import("@emotion/serialize").
|
|
249
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
250
250
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"strong">;
|
|
251
251
|
/**
|
|
252
252
|
* Creates an em element node for emphasized text.
|
|
@@ -255,12 +255,12 @@ export declare const Strong: <AdditionalProps extends Record<string, any> = Reco
|
|
|
255
255
|
* @returns An em element node.
|
|
256
256
|
*/
|
|
257
257
|
export declare const Em: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
258
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
258
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
259
259
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
260
260
|
theme: Partial<{
|
|
261
261
|
[key: string]: any;
|
|
262
262
|
}>;
|
|
263
|
-
css: import("@emotion/serialize").
|
|
263
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
264
264
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"em">;
|
|
265
265
|
/**
|
|
266
266
|
* Creates a small element node for side-comments and small print.
|
|
@@ -269,12 +269,12 @@ export declare const Em: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
269
269
|
* @returns A small element node that can be rendered in React.
|
|
270
270
|
*/
|
|
271
271
|
export declare const Small: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
272
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
272
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
273
273
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
274
274
|
theme: Partial<{
|
|
275
275
|
[key: string]: any;
|
|
276
276
|
}>;
|
|
277
|
-
css: import("@emotion/serialize").
|
|
277
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
278
278
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"small">;
|
|
279
279
|
/**
|
|
280
280
|
* Creates a mark element node for highlighted text.
|
|
@@ -283,12 +283,12 @@ export declare const Small: <AdditionalProps extends Record<string, any> = Recor
|
|
|
283
283
|
* @returns A mark element node.
|
|
284
284
|
*/
|
|
285
285
|
export declare const Mark: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
286
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
286
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
287
287
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
288
288
|
theme: Partial<{
|
|
289
289
|
[key: string]: any;
|
|
290
290
|
}>;
|
|
291
|
-
css: import("@emotion/serialize").
|
|
291
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
292
292
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"mark">;
|
|
293
293
|
/**
|
|
294
294
|
* Creates a span element node.
|
|
@@ -297,12 +297,12 @@ export declare const Mark: <AdditionalProps extends Record<string, any> = Record
|
|
|
297
297
|
* @returns A span element node.
|
|
298
298
|
*/
|
|
299
299
|
export declare const Span: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
300
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children"
|
|
300
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children">>;
|
|
301
301
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
302
302
|
theme: Partial<{
|
|
303
303
|
[key: string]: any;
|
|
304
304
|
}>;
|
|
305
|
-
css: import("@emotion/serialize").
|
|
305
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
306
306
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"span">;
|
|
307
307
|
/**
|
|
308
308
|
* Creates a paragraph element node.
|
|
@@ -311,12 +311,12 @@ export declare const Span: <AdditionalProps extends Record<string, any> = Record
|
|
|
311
311
|
* @returns A paragraph element node.
|
|
312
312
|
*/
|
|
313
313
|
export declare const P: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
314
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children"
|
|
314
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children">>;
|
|
315
315
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
316
316
|
theme: Partial<{
|
|
317
317
|
[key: string]: any;
|
|
318
318
|
}>;
|
|
319
|
-
css: import("@emotion/serialize").
|
|
319
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
320
320
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"p">;
|
|
321
321
|
/**
|
|
322
322
|
* Renders a semantic block of text using a `<p>` element.
|
|
@@ -325,12 +325,12 @@ export declare const P: <AdditionalProps extends Record<string, any> = Record<st
|
|
|
325
325
|
* Text('Hello world', { fontSize: 'theme.text.md' })
|
|
326
326
|
*/
|
|
327
327
|
export declare const Text: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
328
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children"
|
|
328
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "children">>;
|
|
329
329
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
330
330
|
theme: Partial<{
|
|
331
331
|
[key: string]: any;
|
|
332
332
|
}>;
|
|
333
|
-
css: import("@emotion/serialize").
|
|
333
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
334
334
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"p">;
|
|
335
335
|
/**
|
|
336
336
|
* Creates a preformatted text element node.
|
|
@@ -339,12 +339,12 @@ export declare const Text: <AdditionalProps extends Record<string, any> = Record
|
|
|
339
339
|
* @returns A pre element node.
|
|
340
340
|
*/
|
|
341
341
|
export declare const Pre: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
342
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "children"
|
|
342
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "children">>;
|
|
343
343
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
344
344
|
theme: Partial<{
|
|
345
345
|
[key: string]: any;
|
|
346
346
|
}>;
|
|
347
|
-
css: import("@emotion/serialize").
|
|
347
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
348
348
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"pre">;
|
|
349
349
|
/**
|
|
350
350
|
* Creates a code element node for displaying code snippets.
|
|
@@ -353,12 +353,12 @@ export declare const Pre: <AdditionalProps extends Record<string, any> = Record<
|
|
|
353
353
|
* @returns A code element node.
|
|
354
354
|
*/
|
|
355
355
|
export declare const Code: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
356
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
356
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
357
357
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
358
358
|
theme: Partial<{
|
|
359
359
|
[key: string]: any;
|
|
360
360
|
}>;
|
|
361
|
-
css: import("@emotion/serialize").
|
|
361
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
362
362
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"code">;
|
|
363
363
|
/**
|
|
364
364
|
* Represents a line break element.
|
|
@@ -366,12 +366,12 @@ export declare const Code: <AdditionalProps extends Record<string, any> = Record
|
|
|
366
366
|
* @returns A br element node.
|
|
367
367
|
*/
|
|
368
368
|
export declare const Br: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
369
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "children"
|
|
369
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "children">>;
|
|
370
370
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
371
371
|
theme: Partial<{
|
|
372
372
|
[key: string]: any;
|
|
373
373
|
}>;
|
|
374
|
-
css: import("@emotion/serialize").
|
|
374
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
375
375
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"br">;
|
|
376
376
|
// Lists
|
|
377
377
|
/**
|
|
@@ -380,12 +380,12 @@ export declare const Br: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
380
380
|
* @returns An ol element node.
|
|
381
381
|
*/
|
|
382
382
|
export declare const Ol: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
383
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "children"
|
|
383
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "children">>;
|
|
384
384
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
385
385
|
theme: Partial<{
|
|
386
386
|
[key: string]: any;
|
|
387
387
|
}>;
|
|
388
|
-
css: import("@emotion/serialize").
|
|
388
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
389
389
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"ol">;
|
|
390
390
|
/**
|
|
391
391
|
* Represents an unordered list.
|
|
@@ -393,12 +393,12 @@ export declare const Ol: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
393
393
|
* @returns A ul element node.
|
|
394
394
|
*/
|
|
395
395
|
export declare const Ul: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
396
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "children"
|
|
396
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "children">>;
|
|
397
397
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
398
398
|
theme: Partial<{
|
|
399
399
|
[key: string]: any;
|
|
400
400
|
}>;
|
|
401
|
-
css: import("@emotion/serialize").
|
|
401
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
402
402
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"ul">;
|
|
403
403
|
/**
|
|
404
404
|
* Represents a list item.
|
|
@@ -406,12 +406,12 @@ export declare const Ul: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
406
406
|
* @returns An li element node.
|
|
407
407
|
*/
|
|
408
408
|
export declare const Li: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
409
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "children"
|
|
409
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "children">>;
|
|
410
410
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
411
411
|
theme: Partial<{
|
|
412
412
|
[key: string]: any;
|
|
413
413
|
}>;
|
|
414
|
-
css: import("@emotion/serialize").
|
|
414
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
415
415
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"li">;
|
|
416
416
|
/**
|
|
417
417
|
* Represents a description list.
|
|
@@ -419,12 +419,12 @@ export declare const Li: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
419
419
|
* @returns A dl element node.
|
|
420
420
|
*/
|
|
421
421
|
export declare const Dl: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
422
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "children"
|
|
422
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "children">>;
|
|
423
423
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
424
424
|
theme: Partial<{
|
|
425
425
|
[key: string]: any;
|
|
426
426
|
}>;
|
|
427
|
-
css: import("@emotion/serialize").
|
|
427
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
428
428
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"dl">;
|
|
429
429
|
/**
|
|
430
430
|
* Represents a term in a description list.
|
|
@@ -432,12 +432,12 @@ export declare const Dl: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
432
432
|
* @returns A dt element node.
|
|
433
433
|
*/
|
|
434
434
|
export declare const Dt: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
435
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
435
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
436
436
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
437
437
|
theme: Partial<{
|
|
438
438
|
[key: string]: any;
|
|
439
439
|
}>;
|
|
440
|
-
css: import("@emotion/serialize").
|
|
440
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
441
441
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"dt">;
|
|
442
442
|
/**
|
|
443
443
|
* Represents a description in a description list.
|
|
@@ -445,12 +445,12 @@ export declare const Dt: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
445
445
|
* @returns A dd element node.
|
|
446
446
|
*/
|
|
447
447
|
export declare const Dd: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
448
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
448
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
449
449
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
450
450
|
theme: Partial<{
|
|
451
451
|
[key: string]: any;
|
|
452
452
|
}>;
|
|
453
|
-
css: import("@emotion/serialize").
|
|
453
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
454
454
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"dd">;
|
|
455
455
|
// Forms and inputs
|
|
456
456
|
/**
|
|
@@ -459,12 +459,12 @@ export declare const Dd: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
459
459
|
* @returns A form element node.
|
|
460
460
|
*/
|
|
461
461
|
export declare const Form: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
462
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "children"
|
|
462
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "children">>;
|
|
463
463
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
464
464
|
theme: Partial<{
|
|
465
465
|
[key: string]: any;
|
|
466
466
|
}>;
|
|
467
|
-
css: import("@emotion/serialize").
|
|
467
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
468
468
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"form">;
|
|
469
469
|
/**
|
|
470
470
|
* Represents a label for an input element.
|
|
@@ -472,12 +472,12 @@ export declare const Form: <AdditionalProps extends Record<string, any> = Record
|
|
|
472
472
|
* @returns A label element node.
|
|
473
473
|
*/
|
|
474
474
|
export declare const Label: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
475
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "children"
|
|
475
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "children">>;
|
|
476
476
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
477
477
|
theme: Partial<{
|
|
478
478
|
[key: string]: any;
|
|
479
479
|
}>;
|
|
480
|
-
css: import("@emotion/serialize").
|
|
480
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
481
481
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"label">;
|
|
482
482
|
/**
|
|
483
483
|
* Represents an input element.
|
|
@@ -485,12 +485,12 @@ export declare const Label: <AdditionalProps extends Record<string, any> = Recor
|
|
|
485
485
|
* @returns An input element node.
|
|
486
486
|
*/
|
|
487
487
|
export declare const Input: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
488
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "children"
|
|
488
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "children">>;
|
|
489
489
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
490
490
|
theme: Partial<{
|
|
491
491
|
[key: string]: any;
|
|
492
492
|
}>;
|
|
493
|
-
css: import("@emotion/serialize").
|
|
493
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
494
494
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"input">;
|
|
495
495
|
/**
|
|
496
496
|
* Creates a button element node.
|
|
@@ -499,12 +499,12 @@ export declare const Input: <AdditionalProps extends Record<string, any> = Recor
|
|
|
499
499
|
* @returns A button element node.
|
|
500
500
|
*/
|
|
501
501
|
export declare const Button: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
502
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children"
|
|
502
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children">>;
|
|
503
503
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
504
504
|
theme: Partial<{
|
|
505
505
|
[key: string]: any;
|
|
506
506
|
}>;
|
|
507
|
-
css: import("@emotion/serialize").
|
|
507
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
508
508
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"button">;
|
|
509
509
|
/**
|
|
510
510
|
* Represents a textarea element for multiline text input.
|
|
@@ -512,12 +512,12 @@ export declare const Button: <AdditionalProps extends Record<string, any> = Reco
|
|
|
512
512
|
* @returns A textarea element node.
|
|
513
513
|
*/
|
|
514
514
|
export declare const Textarea: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
515
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children"
|
|
515
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children">>;
|
|
516
516
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
517
517
|
theme: Partial<{
|
|
518
518
|
[key: string]: any;
|
|
519
519
|
}>;
|
|
520
|
-
css: import("@emotion/serialize").
|
|
520
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
521
521
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"textarea">;
|
|
522
522
|
/**
|
|
523
523
|
* Represents a select dropdown element.
|
|
@@ -525,12 +525,12 @@ export declare const Textarea: <AdditionalProps extends Record<string, any> = Re
|
|
|
525
525
|
* @returns A select element node.
|
|
526
526
|
*/
|
|
527
527
|
export declare const Select: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
528
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "children"
|
|
528
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "children">>;
|
|
529
529
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
530
530
|
theme: Partial<{
|
|
531
531
|
[key: string]: any;
|
|
532
532
|
}>;
|
|
533
|
-
css: import("@emotion/serialize").
|
|
533
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
534
534
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"select">;
|
|
535
535
|
/**
|
|
536
536
|
* Represents an option within a select element.
|
|
@@ -539,12 +539,12 @@ export declare const Select: <AdditionalProps extends Record<string, any> = Reco
|
|
|
539
539
|
* @returns An option element node.
|
|
540
540
|
*/
|
|
541
541
|
export declare const Option: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
542
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "children"
|
|
542
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "children">>;
|
|
543
543
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
544
544
|
theme: Partial<{
|
|
545
545
|
[key: string]: any;
|
|
546
546
|
}>;
|
|
547
|
-
css: import("@emotion/serialize").
|
|
547
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
548
548
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"option">;
|
|
549
549
|
/**
|
|
550
550
|
* Represents a fieldset element for grouping form elements.
|
|
@@ -552,12 +552,12 @@ export declare const Option: <AdditionalProps extends Record<string, any> = Reco
|
|
|
552
552
|
* @returns A fieldset element node.
|
|
553
553
|
*/
|
|
554
554
|
export declare const Fieldset: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
555
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "children"
|
|
555
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "children">>;
|
|
556
556
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
557
557
|
theme: Partial<{
|
|
558
558
|
[key: string]: any;
|
|
559
559
|
}>;
|
|
560
|
-
css: import("@emotion/serialize").
|
|
560
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
561
561
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"fieldset">;
|
|
562
562
|
/**
|
|
563
563
|
* Represents a legend for a fieldset.
|
|
@@ -566,12 +566,12 @@ export declare const Fieldset: <AdditionalProps extends Record<string, any> = Re
|
|
|
566
566
|
* @returns A legend element node.
|
|
567
567
|
*/
|
|
568
568
|
export declare const Legend: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
569
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "children"
|
|
569
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "children">>;
|
|
570
570
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
571
571
|
theme: Partial<{
|
|
572
572
|
[key: string]: any;
|
|
573
573
|
}>;
|
|
574
|
-
css: import("@emotion/serialize").
|
|
574
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
575
575
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"legend">;
|
|
576
576
|
/**
|
|
577
577
|
* Represents an option group within a select element.
|
|
@@ -579,12 +579,12 @@ export declare const Legend: <AdditionalProps extends Record<string, any> = Reco
|
|
|
579
579
|
* @returns An optgroup element node.
|
|
580
580
|
*/
|
|
581
581
|
export declare const Optgroup: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
582
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "children"
|
|
582
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "children">>;
|
|
583
583
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
584
584
|
theme: Partial<{
|
|
585
585
|
[key: string]: any;
|
|
586
586
|
}>;
|
|
587
|
-
css: import("@emotion/serialize").
|
|
587
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
588
588
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"optgroup">;
|
|
589
589
|
// Tables
|
|
590
590
|
/**
|
|
@@ -593,12 +593,12 @@ export declare const Optgroup: <AdditionalProps extends Record<string, any> = Re
|
|
|
593
593
|
* @returns A table element node.
|
|
594
594
|
*/
|
|
595
595
|
export declare const Table: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
596
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "children"
|
|
596
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "children">>;
|
|
597
597
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
598
598
|
theme: Partial<{
|
|
599
599
|
[key: string]: any;
|
|
600
600
|
}>;
|
|
601
|
-
css: import("@emotion/serialize").
|
|
601
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
602
602
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"table">;
|
|
603
603
|
/**
|
|
604
604
|
* Represents a table header section.
|
|
@@ -606,12 +606,12 @@ export declare const Table: <AdditionalProps extends Record<string, any> = Recor
|
|
|
606
606
|
* @returns A thead element node.
|
|
607
607
|
*/
|
|
608
608
|
export declare const Thead: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
609
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children"
|
|
609
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children">>;
|
|
610
610
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
611
611
|
theme: Partial<{
|
|
612
612
|
[key: string]: any;
|
|
613
613
|
}>;
|
|
614
|
-
css: import("@emotion/serialize").
|
|
614
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
615
615
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"thead">;
|
|
616
616
|
/**
|
|
617
617
|
* Represents a table body section.
|
|
@@ -619,12 +619,12 @@ export declare const Thead: <AdditionalProps extends Record<string, any> = Recor
|
|
|
619
619
|
* @returns A tbody element node.
|
|
620
620
|
*/
|
|
621
621
|
export declare const Tbody: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
622
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children"
|
|
622
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children">>;
|
|
623
623
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
624
624
|
theme: Partial<{
|
|
625
625
|
[key: string]: any;
|
|
626
626
|
}>;
|
|
627
|
-
css: import("@emotion/serialize").
|
|
627
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
628
628
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"tbody">;
|
|
629
629
|
/**
|
|
630
630
|
* Represents a table footer section.
|
|
@@ -632,12 +632,12 @@ export declare const Tbody: <AdditionalProps extends Record<string, any> = Recor
|
|
|
632
632
|
* @returns A tfoot element node.
|
|
633
633
|
*/
|
|
634
634
|
export declare const Tfoot: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
635
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children"
|
|
635
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "children">>;
|
|
636
636
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
637
637
|
theme: Partial<{
|
|
638
638
|
[key: string]: any;
|
|
639
639
|
}>;
|
|
640
|
-
css: import("@emotion/serialize").
|
|
640
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
641
641
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"tfoot">;
|
|
642
642
|
/**
|
|
643
643
|
* Represents a table row.
|
|
@@ -645,12 +645,12 @@ export declare const Tfoot: <AdditionalProps extends Record<string, any> = Recor
|
|
|
645
645
|
* @returns A tr element node.
|
|
646
646
|
*/
|
|
647
647
|
export declare const Tr: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
648
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "children"
|
|
648
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "children">>;
|
|
649
649
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
650
650
|
theme: Partial<{
|
|
651
651
|
[key: string]: any;
|
|
652
652
|
}>;
|
|
653
|
-
css: import("@emotion/serialize").
|
|
653
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
654
654
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"tr">;
|
|
655
655
|
/**
|
|
656
656
|
* Represents a table header cell.
|
|
@@ -658,12 +658,12 @@ export declare const Tr: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
658
658
|
* @returns A th element node.
|
|
659
659
|
*/
|
|
660
660
|
export declare const Th: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
661
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "children"
|
|
661
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "children">>;
|
|
662
662
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
663
663
|
theme: Partial<{
|
|
664
664
|
[key: string]: any;
|
|
665
665
|
}>;
|
|
666
|
-
css: import("@emotion/serialize").
|
|
666
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
667
667
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"th">;
|
|
668
668
|
/**
|
|
669
669
|
* Represents a table data cell.
|
|
@@ -671,12 +671,12 @@ export declare const Th: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
671
671
|
* @returns A td element node.
|
|
672
672
|
*/
|
|
673
673
|
export declare const Td: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
674
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "children"
|
|
674
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "children">>;
|
|
675
675
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
676
676
|
theme: Partial<{
|
|
677
677
|
[key: string]: any;
|
|
678
678
|
}>;
|
|
679
|
-
css: import("@emotion/serialize").
|
|
679
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
680
680
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"td">;
|
|
681
681
|
/**
|
|
682
682
|
* Represents a table caption.
|
|
@@ -685,12 +685,12 @@ export declare const Td: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
685
685
|
* @returns A caption element node.
|
|
686
686
|
*/
|
|
687
687
|
export declare const Caption: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
688
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
688
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
689
689
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
690
690
|
theme: Partial<{
|
|
691
691
|
[key: string]: any;
|
|
692
692
|
}>;
|
|
693
|
-
css: import("@emotion/serialize").
|
|
693
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
694
694
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"caption">;
|
|
695
695
|
/**
|
|
696
696
|
* Represents a table column group.
|
|
@@ -698,12 +698,12 @@ export declare const Caption: <AdditionalProps extends Record<string, any> = Rec
|
|
|
698
698
|
* @returns A colgroup element node.
|
|
699
699
|
*/
|
|
700
700
|
export declare const Colgroup: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
701
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children"
|
|
701
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children">>;
|
|
702
702
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
703
703
|
theme: Partial<{
|
|
704
704
|
[key: string]: any;
|
|
705
705
|
}>;
|
|
706
|
-
css: import("@emotion/serialize").
|
|
706
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
707
707
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"colgroup">;
|
|
708
708
|
/**
|
|
709
709
|
* Represents a table column.
|
|
@@ -711,12 +711,12 @@ export declare const Colgroup: <AdditionalProps extends Record<string, any> = Re
|
|
|
711
711
|
* @returns A col element node.
|
|
712
712
|
*/
|
|
713
713
|
export declare const Col: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
714
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children"
|
|
714
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "children">>;
|
|
715
715
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
716
716
|
theme: Partial<{
|
|
717
717
|
[key: string]: any;
|
|
718
718
|
}>;
|
|
719
|
-
css: import("@emotion/serialize").
|
|
719
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
720
720
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"col">;
|
|
721
721
|
// Media elements
|
|
722
722
|
/**
|
|
@@ -725,12 +725,12 @@ export declare const Col: <AdditionalProps extends Record<string, any> = Record<
|
|
|
725
725
|
* @returns An img element node.
|
|
726
726
|
*/
|
|
727
727
|
export declare const Img: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
728
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "children"
|
|
728
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "children">>;
|
|
729
729
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
730
730
|
theme: Partial<{
|
|
731
731
|
[key: string]: any;
|
|
732
732
|
}>;
|
|
733
|
-
css: import("@emotion/serialize").
|
|
733
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
734
734
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"img">;
|
|
735
735
|
/**
|
|
736
736
|
* Represents a video element.
|
|
@@ -738,12 +738,12 @@ export declare const Img: <AdditionalProps extends Record<string, any> = Record<
|
|
|
738
738
|
* @returns A video element node.
|
|
739
739
|
*/
|
|
740
740
|
export declare const Video: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
741
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "children"
|
|
741
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "children">>;
|
|
742
742
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
743
743
|
theme: Partial<{
|
|
744
744
|
[key: string]: any;
|
|
745
745
|
}>;
|
|
746
|
-
css: import("@emotion/serialize").
|
|
746
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
747
747
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"video">;
|
|
748
748
|
/**
|
|
749
749
|
* Represents an audio element.
|
|
@@ -751,12 +751,12 @@ export declare const Video: <AdditionalProps extends Record<string, any> = Recor
|
|
|
751
751
|
* @returns An audio element node.
|
|
752
752
|
*/
|
|
753
753
|
export declare const Audio: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
754
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "children"
|
|
754
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "children">>;
|
|
755
755
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
756
756
|
theme: Partial<{
|
|
757
757
|
[key: string]: any;
|
|
758
758
|
}>;
|
|
759
|
-
css: import("@emotion/serialize").
|
|
759
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
760
760
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"audio">;
|
|
761
761
|
/**
|
|
762
762
|
* Represents a picture element.
|
|
@@ -764,12 +764,12 @@ export declare const Audio: <AdditionalProps extends Record<string, any> = Recor
|
|
|
764
764
|
* @returns A picture element node.
|
|
765
765
|
*/
|
|
766
766
|
export declare const Picture: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
767
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
767
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
768
768
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
769
769
|
theme: Partial<{
|
|
770
770
|
[key: string]: any;
|
|
771
771
|
}>;
|
|
772
|
-
css: import("@emotion/serialize").
|
|
772
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
773
773
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"picture">;
|
|
774
774
|
/**
|
|
775
775
|
* Represents a source element.
|
|
@@ -777,12 +777,12 @@ export declare const Picture: <AdditionalProps extends Record<string, any> = Rec
|
|
|
777
777
|
* @returns A source element node.
|
|
778
778
|
*/
|
|
779
779
|
export declare const Source: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
780
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "children"
|
|
780
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "children">>;
|
|
781
781
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
782
782
|
theme: Partial<{
|
|
783
783
|
[key: string]: any;
|
|
784
784
|
}>;
|
|
785
|
-
css: import("@emotion/serialize").
|
|
785
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
786
786
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"source">;
|
|
787
787
|
/**
|
|
788
788
|
* Represents a text track element.
|
|
@@ -790,12 +790,12 @@ export declare const Source: <AdditionalProps extends Record<string, any> = Reco
|
|
|
790
790
|
* @returns A track element node.
|
|
791
791
|
*/
|
|
792
792
|
export declare const Track: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
793
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "children"
|
|
793
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "children">>;
|
|
794
794
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
795
795
|
theme: Partial<{
|
|
796
796
|
[key: string]: any;
|
|
797
797
|
}>;
|
|
798
|
-
css: import("@emotion/serialize").
|
|
798
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
799
799
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"track">;
|
|
800
800
|
/**
|
|
801
801
|
* Represents a canvas element.
|
|
@@ -803,12 +803,12 @@ export declare const Track: <AdditionalProps extends Record<string, any> = Recor
|
|
|
803
803
|
* @returns A canvas element node.
|
|
804
804
|
*/
|
|
805
805
|
export declare const Canvas: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
806
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "children"
|
|
806
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "children">>;
|
|
807
807
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
808
808
|
theme: Partial<{
|
|
809
809
|
[key: string]: any;
|
|
810
810
|
}>;
|
|
811
|
-
css: import("@emotion/serialize").
|
|
811
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
812
812
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"canvas">;
|
|
813
813
|
/**
|
|
814
814
|
* Represents an iframe element.
|
|
@@ -816,12 +816,12 @@ export declare const Canvas: <AdditionalProps extends Record<string, any> = Reco
|
|
|
816
816
|
* @returns An iframe element node.
|
|
817
817
|
*/
|
|
818
818
|
export declare const Iframe: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
819
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "children"
|
|
819
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "children">>;
|
|
820
820
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
821
821
|
theme: Partial<{
|
|
822
822
|
[key: string]: any;
|
|
823
823
|
}>;
|
|
824
|
-
css: import("@emotion/serialize").
|
|
824
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
825
825
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"iframe">;
|
|
826
826
|
// SVG elements
|
|
827
827
|
/**
|
|
@@ -830,12 +830,12 @@ export declare const Iframe: <AdditionalProps extends Record<string, any> = Reco
|
|
|
830
830
|
* @returns An svg element node.
|
|
831
831
|
*/
|
|
832
832
|
export declare const Svg: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGSVGElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
833
|
-
props: Partial<Omit<import("react").SVGProps<SVGSVGElement>, "children"
|
|
833
|
+
props: Partial<Omit<import("react").SVGProps<SVGSVGElement>, "children">>;
|
|
834
834
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
835
835
|
theme: Partial<{
|
|
836
836
|
[key: string]: any;
|
|
837
837
|
}>;
|
|
838
|
-
css: import("@emotion/serialize").
|
|
838
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
839
839
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"svg">;
|
|
840
840
|
/**
|
|
841
841
|
* Represents an SVG path element.
|
|
@@ -843,12 +843,12 @@ export declare const Svg: <AdditionalProps extends Record<string, any> = Record<
|
|
|
843
843
|
* @returns A path element node.
|
|
844
844
|
*/
|
|
845
845
|
export declare const SvgPath: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGPathElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
846
|
-
props: Partial<Omit<import("react").SVGProps<SVGPathElement>, "children"
|
|
846
|
+
props: Partial<Omit<import("react").SVGProps<SVGPathElement>, "children">>;
|
|
847
847
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
848
848
|
theme: Partial<{
|
|
849
849
|
[key: string]: any;
|
|
850
850
|
}>;
|
|
851
|
-
css: import("@emotion/serialize").
|
|
851
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
852
852
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"path">;
|
|
853
853
|
/**
|
|
854
854
|
* Represents an SVG circle element.
|
|
@@ -856,12 +856,12 @@ export declare const SvgPath: <AdditionalProps extends Record<string, any> = Rec
|
|
|
856
856
|
* @returns A circle element node.
|
|
857
857
|
*/
|
|
858
858
|
export declare const SvgCircle: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGCircleElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
859
|
-
props: Partial<Omit<import("react").SVGProps<SVGCircleElement>, "children"
|
|
859
|
+
props: Partial<Omit<import("react").SVGProps<SVGCircleElement>, "children">>;
|
|
860
860
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
861
861
|
theme: Partial<{
|
|
862
862
|
[key: string]: any;
|
|
863
863
|
}>;
|
|
864
|
-
css: import("@emotion/serialize").
|
|
864
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
865
865
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"circle">;
|
|
866
866
|
/**
|
|
867
867
|
* Represents an SVG ellipse element.
|
|
@@ -869,12 +869,12 @@ export declare const SvgCircle: <AdditionalProps extends Record<string, any> = R
|
|
|
869
869
|
* @returns An ellipse element node.
|
|
870
870
|
*/
|
|
871
871
|
export declare const SvgEllipse: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGEllipseElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
872
|
-
props: Partial<Omit<import("react").SVGProps<SVGEllipseElement>, "children"
|
|
872
|
+
props: Partial<Omit<import("react").SVGProps<SVGEllipseElement>, "children">>;
|
|
873
873
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
874
874
|
theme: Partial<{
|
|
875
875
|
[key: string]: any;
|
|
876
876
|
}>;
|
|
877
|
-
css: import("@emotion/serialize").
|
|
877
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
878
878
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"ellipse">;
|
|
879
879
|
/**
|
|
880
880
|
* Represents an SVG line element.
|
|
@@ -882,12 +882,12 @@ export declare const SvgEllipse: <AdditionalProps extends Record<string, any> =
|
|
|
882
882
|
* @returns A line element node.
|
|
883
883
|
*/
|
|
884
884
|
export declare const SvgLine: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGLineElementAttributes<SVGLineElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
885
|
-
props: Partial<Omit<import("react").SVGLineElementAttributes<SVGLineElement>, "children"
|
|
885
|
+
props: Partial<Omit<import("react").SVGLineElementAttributes<SVGLineElement>, "children">>;
|
|
886
886
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
887
887
|
theme: Partial<{
|
|
888
888
|
[key: string]: any;
|
|
889
889
|
}>;
|
|
890
|
-
css: import("@emotion/serialize").
|
|
890
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
891
891
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"line">;
|
|
892
892
|
/**
|
|
893
893
|
* Represents an SVG polyline element.
|
|
@@ -895,12 +895,12 @@ export declare const SvgLine: <AdditionalProps extends Record<string, any> = Rec
|
|
|
895
895
|
* @returns A polyline element node.
|
|
896
896
|
*/
|
|
897
897
|
export declare const SvgPolyline: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGPolylineElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
898
|
-
props: Partial<Omit<import("react").SVGProps<SVGPolylineElement>, "children"
|
|
898
|
+
props: Partial<Omit<import("react").SVGProps<SVGPolylineElement>, "children">>;
|
|
899
899
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
900
900
|
theme: Partial<{
|
|
901
901
|
[key: string]: any;
|
|
902
902
|
}>;
|
|
903
|
-
css: import("@emotion/serialize").
|
|
903
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
904
904
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"polyline">;
|
|
905
905
|
/**
|
|
906
906
|
* Represents an SVG polygon element.
|
|
@@ -908,12 +908,12 @@ export declare const SvgPolyline: <AdditionalProps extends Record<string, any> =
|
|
|
908
908
|
* @returns A polygon element node.
|
|
909
909
|
*/
|
|
910
910
|
export declare const SvgPolygon: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGPolygonElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
911
|
-
props: Partial<Omit<import("react").SVGProps<SVGPolygonElement>, "children"
|
|
911
|
+
props: Partial<Omit<import("react").SVGProps<SVGPolygonElement>, "children">>;
|
|
912
912
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
913
913
|
theme: Partial<{
|
|
914
914
|
[key: string]: any;
|
|
915
915
|
}>;
|
|
916
|
-
css: import("@emotion/serialize").
|
|
916
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
917
917
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"polygon">;
|
|
918
918
|
/**
|
|
919
919
|
* Represents an SVG rectangle element.
|
|
@@ -921,12 +921,12 @@ export declare const SvgPolygon: <AdditionalProps extends Record<string, any> =
|
|
|
921
921
|
* @returns A rect element node.
|
|
922
922
|
*/
|
|
923
923
|
export declare const SvgRect: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGRectElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
924
|
-
props: Partial<Omit<import("react").SVGProps<SVGRectElement>, "children"
|
|
924
|
+
props: Partial<Omit<import("react").SVGProps<SVGRectElement>, "children">>;
|
|
925
925
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
926
926
|
theme: Partial<{
|
|
927
927
|
[key: string]: any;
|
|
928
928
|
}>;
|
|
929
|
-
css: import("@emotion/serialize").
|
|
929
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
930
930
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"rect">;
|
|
931
931
|
/**
|
|
932
932
|
* Represents an SVG use element.
|
|
@@ -934,12 +934,12 @@ export declare const SvgRect: <AdditionalProps extends Record<string, any> = Rec
|
|
|
934
934
|
* @returns A use element node.
|
|
935
935
|
*/
|
|
936
936
|
export declare const SvgUse: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGUseElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
937
|
-
props: Partial<Omit<import("react").SVGProps<SVGUseElement>, "children"
|
|
937
|
+
props: Partial<Omit<import("react").SVGProps<SVGUseElement>, "children">>;
|
|
938
938
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
939
939
|
theme: Partial<{
|
|
940
940
|
[key: string]: any;
|
|
941
941
|
}>;
|
|
942
|
-
css: import("@emotion/serialize").
|
|
942
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
943
943
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"use">;
|
|
944
944
|
/**
|
|
945
945
|
* Represents an SVG definitions element.
|
|
@@ -947,12 +947,12 @@ export declare const SvgUse: <AdditionalProps extends Record<string, any> = Reco
|
|
|
947
947
|
* @returns A defs element node.
|
|
948
948
|
*/
|
|
949
949
|
export declare const SvgDefs: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGDefsElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
950
|
-
props: Partial<Omit<import("react").SVGProps<SVGDefsElement>, "children"
|
|
950
|
+
props: Partial<Omit<import("react").SVGProps<SVGDefsElement>, "children">>;
|
|
951
951
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
952
952
|
theme: Partial<{
|
|
953
953
|
[key: string]: any;
|
|
954
954
|
}>;
|
|
955
|
-
css: import("@emotion/serialize").
|
|
955
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
956
956
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"defs">;
|
|
957
957
|
/**
|
|
958
958
|
* Represents an SVG linear gradient element.
|
|
@@ -960,12 +960,12 @@ export declare const SvgDefs: <AdditionalProps extends Record<string, any> = Rec
|
|
|
960
960
|
* @returns A linearGradient element node.
|
|
961
961
|
*/
|
|
962
962
|
export declare const SvgLinearGradient: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGLinearGradientElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
963
|
-
props: Partial<Omit<import("react").SVGProps<SVGLinearGradientElement>, "children"
|
|
963
|
+
props: Partial<Omit<import("react").SVGProps<SVGLinearGradientElement>, "children">>;
|
|
964
964
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
965
965
|
theme: Partial<{
|
|
966
966
|
[key: string]: any;
|
|
967
967
|
}>;
|
|
968
|
-
css: import("@emotion/serialize").
|
|
968
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
969
969
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"linearGradient">;
|
|
970
970
|
/**
|
|
971
971
|
* Represents an SVG radial gradient element.
|
|
@@ -973,12 +973,12 @@ export declare const SvgLinearGradient: <AdditionalProps extends Record<string,
|
|
|
973
973
|
* @returns A radialGradient element node.
|
|
974
974
|
*/
|
|
975
975
|
export declare const SvgRadialGradient: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGRadialGradientElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
976
|
-
props: Partial<Omit<import("react").SVGProps<SVGRadialGradientElement>, "children"
|
|
976
|
+
props: Partial<Omit<import("react").SVGProps<SVGRadialGradientElement>, "children">>;
|
|
977
977
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
978
978
|
theme: Partial<{
|
|
979
979
|
[key: string]: any;
|
|
980
980
|
}>;
|
|
981
|
-
css: import("@emotion/serialize").
|
|
981
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
982
982
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"radialGradient">;
|
|
983
983
|
/**
|
|
984
984
|
* Represents an SVG gradient stop element.
|
|
@@ -986,12 +986,12 @@ export declare const SvgRadialGradient: <AdditionalProps extends Record<string,
|
|
|
986
986
|
* @returns A stop element node.
|
|
987
987
|
*/
|
|
988
988
|
export declare const SvgStop: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGStopElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
989
|
-
props: Partial<Omit<import("react").SVGProps<SVGStopElement>, "children"
|
|
989
|
+
props: Partial<Omit<import("react").SVGProps<SVGStopElement>, "children">>;
|
|
990
990
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
991
991
|
theme: Partial<{
|
|
992
992
|
[key: string]: any;
|
|
993
993
|
}>;
|
|
994
|
-
css: import("@emotion/serialize").
|
|
994
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
995
995
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"stop">;
|
|
996
996
|
/**
|
|
997
997
|
* Represents an SVG symbol element.
|
|
@@ -999,12 +999,12 @@ export declare const SvgStop: <AdditionalProps extends Record<string, any> = Rec
|
|
|
999
999
|
* @returns A symbol element node.
|
|
1000
1000
|
*/
|
|
1001
1001
|
export declare const SvgSymbol: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGSymbolElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1002
|
-
props: Partial<Omit<import("react").SVGProps<SVGSymbolElement>, "children"
|
|
1002
|
+
props: Partial<Omit<import("react").SVGProps<SVGSymbolElement>, "children">>;
|
|
1003
1003
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1004
1004
|
theme: Partial<{
|
|
1005
1005
|
[key: string]: any;
|
|
1006
1006
|
}>;
|
|
1007
|
-
css: import("@emotion/serialize").
|
|
1007
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1008
1008
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"symbol">;
|
|
1009
1009
|
/**
|
|
1010
1010
|
* Represents an SVG group element.
|
|
@@ -1012,12 +1012,12 @@ export declare const SvgSymbol: <AdditionalProps extends Record<string, any> = R
|
|
|
1012
1012
|
* @returns A g element node.
|
|
1013
1013
|
*/
|
|
1014
1014
|
export declare const SvgG: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGGElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1015
|
-
props: Partial<Omit<import("react").SVGProps<SVGGElement>, "children"
|
|
1015
|
+
props: Partial<Omit<import("react").SVGProps<SVGGElement>, "children">>;
|
|
1016
1016
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1017
1017
|
theme: Partial<{
|
|
1018
1018
|
[key: string]: any;
|
|
1019
1019
|
}>;
|
|
1020
|
-
css: import("@emotion/serialize").
|
|
1020
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1021
1021
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"g">;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* Represents an SVG text element.
|
|
@@ -1025,12 +1025,12 @@ export declare const SvgG: <AdditionalProps extends Record<string, any> = Record
|
|
|
1025
1025
|
* @returns A text element node.
|
|
1026
1026
|
*/
|
|
1027
1027
|
export declare const SvgText: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGTextElementAttributes<SVGTextElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1028
|
-
props: Partial<Omit<import("react").SVGTextElementAttributes<SVGTextElement>, "children"
|
|
1028
|
+
props: Partial<Omit<import("react").SVGTextElementAttributes<SVGTextElement>, "children">>;
|
|
1029
1029
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1030
1030
|
theme: Partial<{
|
|
1031
1031
|
[key: string]: any;
|
|
1032
1032
|
}>;
|
|
1033
|
-
css: import("@emotion/serialize").
|
|
1033
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1034
1034
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"text">;
|
|
1035
1035
|
/**
|
|
1036
1036
|
* Represents an SVG text span element.
|
|
@@ -1038,12 +1038,12 @@ export declare const SvgText: <AdditionalProps extends Record<string, any> = Rec
|
|
|
1038
1038
|
* @returns A tspan element node.
|
|
1039
1039
|
*/
|
|
1040
1040
|
export declare const SvgTspan: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").SVGProps<SVGTSpanElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1041
|
-
props: Partial<Omit<import("react").SVGProps<SVGTSpanElement>, "children"
|
|
1041
|
+
props: Partial<Omit<import("react").SVGProps<SVGTSpanElement>, "children">>;
|
|
1042
1042
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1043
1043
|
theme: Partial<{
|
|
1044
1044
|
[key: string]: any;
|
|
1045
1045
|
}>;
|
|
1046
|
-
css: import("@emotion/serialize").
|
|
1046
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1047
1047
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"tspan">;
|
|
1048
1048
|
// Navigation and links
|
|
1049
1049
|
/**
|
|
@@ -1052,12 +1052,12 @@ export declare const SvgTspan: <AdditionalProps extends Record<string, any> = Re
|
|
|
1052
1052
|
* @returns An a element node.
|
|
1053
1053
|
*/
|
|
1054
1054
|
export declare const A: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1055
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "children"
|
|
1055
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "children">>;
|
|
1056
1056
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1057
1057
|
theme: Partial<{
|
|
1058
1058
|
[key: string]: any;
|
|
1059
1059
|
}>;
|
|
1060
|
-
css: import("@emotion/serialize").
|
|
1060
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1061
1061
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"a">;
|
|
1062
1062
|
/**
|
|
1063
1063
|
* Represents a navigation element.
|
|
@@ -1065,12 +1065,12 @@ export declare const A: <AdditionalProps extends Record<string, any> = Record<st
|
|
|
1065
1065
|
* @returns A nav element node.
|
|
1066
1066
|
*/
|
|
1067
1067
|
export declare const Nav: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1068
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1068
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1069
1069
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1070
1070
|
theme: Partial<{
|
|
1071
1071
|
[key: string]: any;
|
|
1072
1072
|
}>;
|
|
1073
|
-
css: import("@emotion/serialize").
|
|
1073
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1074
1074
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"nav">;
|
|
1075
1075
|
// Document structure
|
|
1076
1076
|
/**
|
|
@@ -1079,12 +1079,12 @@ export declare const Nav: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1079
1079
|
* @returns A body element node.
|
|
1080
1080
|
*/
|
|
1081
1081
|
export declare const Body: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1082
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "children"
|
|
1082
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "children">>;
|
|
1083
1083
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1084
1084
|
theme: Partial<{
|
|
1085
1085
|
[key: string]: any;
|
|
1086
1086
|
}>;
|
|
1087
|
-
css: import("@emotion/serialize").
|
|
1087
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1088
1088
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"body">;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* Represents the main content of a document.
|
|
@@ -1092,12 +1092,12 @@ export declare const Body: <AdditionalProps extends Record<string, any> = Record
|
|
|
1092
1092
|
* @returns A main element node.
|
|
1093
1093
|
*/
|
|
1094
1094
|
export declare const Main: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1095
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1095
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1096
1096
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1097
1097
|
theme: Partial<{
|
|
1098
1098
|
[key: string]: any;
|
|
1099
1099
|
}>;
|
|
1100
|
-
css: import("@emotion/serialize").
|
|
1100
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1101
1101
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"main">;
|
|
1102
1102
|
/**
|
|
1103
1103
|
* Represents a header element.
|
|
@@ -1105,12 +1105,12 @@ export declare const Main: <AdditionalProps extends Record<string, any> = Record
|
|
|
1105
1105
|
* @returns A header element node.
|
|
1106
1106
|
*/
|
|
1107
1107
|
export declare const Header: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1108
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1108
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1109
1109
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1110
1110
|
theme: Partial<{
|
|
1111
1111
|
[key: string]: any;
|
|
1112
1112
|
}>;
|
|
1113
|
-
css: import("@emotion/serialize").
|
|
1113
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1114
1114
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"header">;
|
|
1115
1115
|
/**
|
|
1116
1116
|
* Represents a footer element.
|
|
@@ -1118,12 +1118,12 @@ export declare const Header: <AdditionalProps extends Record<string, any> = Reco
|
|
|
1118
1118
|
* @returns A footer element node.
|
|
1119
1119
|
*/
|
|
1120
1120
|
export declare const Footer: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1121
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1121
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1122
1122
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1123
1123
|
theme: Partial<{
|
|
1124
1124
|
[key: string]: any;
|
|
1125
1125
|
}>;
|
|
1126
|
-
css: import("@emotion/serialize").
|
|
1126
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1127
1127
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"footer">;
|
|
1128
1128
|
/**
|
|
1129
1129
|
* Represents an aside element.
|
|
@@ -1131,12 +1131,12 @@ export declare const Footer: <AdditionalProps extends Record<string, any> = Reco
|
|
|
1131
1131
|
* @returns An aside element node.
|
|
1132
1132
|
*/
|
|
1133
1133
|
export declare const Aside: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1134
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1134
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1135
1135
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1136
1136
|
theme: Partial<{
|
|
1137
1137
|
[key: string]: any;
|
|
1138
1138
|
}>;
|
|
1139
|
-
css: import("@emotion/serialize").
|
|
1139
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1140
1140
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"aside">;
|
|
1141
1141
|
/**
|
|
1142
1142
|
* Represents a section element.
|
|
@@ -1144,12 +1144,12 @@ export declare const Aside: <AdditionalProps extends Record<string, any> = Recor
|
|
|
1144
1144
|
* @returns A section element node.
|
|
1145
1145
|
*/
|
|
1146
1146
|
export declare const Section: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1147
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1147
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1148
1148
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1149
1149
|
theme: Partial<{
|
|
1150
1150
|
[key: string]: any;
|
|
1151
1151
|
}>;
|
|
1152
|
-
css: import("@emotion/serialize").
|
|
1152
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1153
1153
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"section">;
|
|
1154
1154
|
/**
|
|
1155
1155
|
* Represents an article element.
|
|
@@ -1157,12 +1157,12 @@ export declare const Section: <AdditionalProps extends Record<string, any> = Rec
|
|
|
1157
1157
|
* @returns An article element node.
|
|
1158
1158
|
*/
|
|
1159
1159
|
export declare const Article: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1160
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1160
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1161
1161
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1162
1162
|
theme: Partial<{
|
|
1163
1163
|
[key: string]: any;
|
|
1164
1164
|
}>;
|
|
1165
|
-
css: import("@emotion/serialize").
|
|
1165
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1166
1166
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"article">;
|
|
1167
1167
|
/**
|
|
1168
1168
|
* Represents a figure element.
|
|
@@ -1170,12 +1170,12 @@ export declare const Article: <AdditionalProps extends Record<string, any> = Rec
|
|
|
1170
1170
|
* @returns A figure element node.
|
|
1171
1171
|
*/
|
|
1172
1172
|
export declare const Figure: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1173
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1173
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1174
1174
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1175
1175
|
theme: Partial<{
|
|
1176
1176
|
[key: string]: any;
|
|
1177
1177
|
}>;
|
|
1178
|
-
css: import("@emotion/serialize").
|
|
1178
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1179
1179
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"figure">;
|
|
1180
1180
|
/**
|
|
1181
1181
|
* Represents a figure caption element.
|
|
@@ -1184,12 +1184,12 @@ export declare const Figure: <AdditionalProps extends Record<string, any> = Reco
|
|
|
1184
1184
|
* @returns A figcaption element node.
|
|
1185
1185
|
*/
|
|
1186
1186
|
export declare const Figcaption: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1187
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1187
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1188
1188
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1189
1189
|
theme: Partial<{
|
|
1190
1190
|
[key: string]: any;
|
|
1191
1191
|
}>;
|
|
1192
|
-
css: import("@emotion/serialize").
|
|
1192
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1193
1193
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"figcaption">;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* Represents a blockquote element.
|
|
@@ -1197,12 +1197,12 @@ export declare const Figcaption: <AdditionalProps extends Record<string, any> =
|
|
|
1197
1197
|
* @returns A blockquote element node.
|
|
1198
1198
|
*/
|
|
1199
1199
|
export declare const Blockquote: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1200
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children"
|
|
1200
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children">>;
|
|
1201
1201
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1202
1202
|
theme: Partial<{
|
|
1203
1203
|
[key: string]: any;
|
|
1204
1204
|
}>;
|
|
1205
|
-
css: import("@emotion/serialize").
|
|
1205
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1206
1206
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"blockquote">;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* Represents an address element.
|
|
@@ -1210,12 +1210,12 @@ export declare const Blockquote: <AdditionalProps extends Record<string, any> =
|
|
|
1210
1210
|
* @returns An address element node.
|
|
1211
1211
|
*/
|
|
1212
1212
|
export declare const Address: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1213
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1213
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1214
1214
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1215
1215
|
theme: Partial<{
|
|
1216
1216
|
[key: string]: any;
|
|
1217
1217
|
}>;
|
|
1218
|
-
css: import("@emotion/serialize").
|
|
1218
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1219
1219
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"address">;
|
|
1220
1220
|
/**
|
|
1221
1221
|
* Represents a dialog element.
|
|
@@ -1223,12 +1223,12 @@ export declare const Address: <AdditionalProps extends Record<string, any> = Rec
|
|
|
1223
1223
|
* @returns A dialog element node.
|
|
1224
1224
|
*/
|
|
1225
1225
|
export declare const Dialog: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1226
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "children"
|
|
1226
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "children">>;
|
|
1227
1227
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1228
1228
|
theme: Partial<{
|
|
1229
1229
|
[key: string]: any;
|
|
1230
1230
|
}>;
|
|
1231
|
-
css: import("@emotion/serialize").
|
|
1231
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1232
1232
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"dialog">;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* Represents a details element.
|
|
@@ -1236,12 +1236,12 @@ export declare const Dialog: <AdditionalProps extends Record<string, any> = Reco
|
|
|
1236
1236
|
* @returns A details element node.
|
|
1237
1237
|
*/
|
|
1238
1238
|
export declare const Details: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1239
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, "children"
|
|
1239
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, "children">>;
|
|
1240
1240
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1241
1241
|
theme: Partial<{
|
|
1242
1242
|
[key: string]: any;
|
|
1243
1243
|
}>;
|
|
1244
|
-
css: import("@emotion/serialize").
|
|
1244
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1245
1245
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"details">;
|
|
1246
1246
|
/**
|
|
1247
1247
|
* Represents a summary element for a details disclosure box.
|
|
@@ -1250,12 +1250,12 @@ export declare const Details: <AdditionalProps extends Record<string, any> = Rec
|
|
|
1250
1250
|
* @returns A summary element node.
|
|
1251
1251
|
*/
|
|
1252
1252
|
export declare const Summary: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1253
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1253
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1254
1254
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1255
1255
|
theme: Partial<{
|
|
1256
1256
|
[key: string]: any;
|
|
1257
1257
|
}>;
|
|
1258
|
-
css: import("@emotion/serialize").
|
|
1258
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1259
1259
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"summary">;
|
|
1260
1260
|
// Document head elements
|
|
1261
1261
|
/**
|
|
@@ -1264,12 +1264,12 @@ export declare const Summary: <AdditionalProps extends Record<string, any> = Rec
|
|
|
1264
1264
|
* @returns A head element node.
|
|
1265
1265
|
*/
|
|
1266
1266
|
export declare const Head: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1267
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "children"
|
|
1267
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "children">>;
|
|
1268
1268
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1269
1269
|
theme: Partial<{
|
|
1270
1270
|
[key: string]: any;
|
|
1271
1271
|
}>;
|
|
1272
|
-
css: import("@emotion/serialize").
|
|
1272
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1273
1273
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"head">;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* Represents the root HTML element.
|
|
@@ -1277,12 +1277,12 @@ export declare const Head: <AdditionalProps extends Record<string, any> = Record
|
|
|
1277
1277
|
* @returns An HTML element node.
|
|
1278
1278
|
*/
|
|
1279
1279
|
export declare const Html: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1280
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "children"
|
|
1280
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "children">>;
|
|
1281
1281
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1282
1282
|
theme: Partial<{
|
|
1283
1283
|
[key: string]: any;
|
|
1284
1284
|
}>;
|
|
1285
|
-
css: import("@emotion/serialize").
|
|
1285
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1286
1286
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"html">;
|
|
1287
1287
|
/**
|
|
1288
1288
|
* Represents a meta element.
|
|
@@ -1290,12 +1290,12 @@ export declare const Html: <AdditionalProps extends Record<string, any> = Record
|
|
|
1290
1290
|
* @returns A meta element node.
|
|
1291
1291
|
*/
|
|
1292
1292
|
export declare const Meta: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1293
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "children"
|
|
1293
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "children">>;
|
|
1294
1294
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1295
1295
|
theme: Partial<{
|
|
1296
1296
|
[key: string]: any;
|
|
1297
1297
|
}>;
|
|
1298
|
-
css: import("@emotion/serialize").
|
|
1298
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1299
1299
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"meta">;
|
|
1300
1300
|
/**
|
|
1301
1301
|
* Represents a link element.
|
|
@@ -1303,12 +1303,12 @@ export declare const Meta: <AdditionalProps extends Record<string, any> = Record
|
|
|
1303
1303
|
* @returns A link element node.
|
|
1304
1304
|
*/
|
|
1305
1305
|
export declare const Link: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1306
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "children"
|
|
1306
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "children">>;
|
|
1307
1307
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1308
1308
|
theme: Partial<{
|
|
1309
1309
|
[key: string]: any;
|
|
1310
1310
|
}>;
|
|
1311
|
-
css: import("@emotion/serialize").
|
|
1311
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1312
1312
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"link">;
|
|
1313
1313
|
/**
|
|
1314
1314
|
* Represents a style element. Its content should be CSS text.
|
|
@@ -1316,12 +1316,12 @@ export declare const Link: <AdditionalProps extends Record<string, any> = Record
|
|
|
1316
1316
|
* @returns A style element node.
|
|
1317
1317
|
*/
|
|
1318
1318
|
export declare const Style: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1319
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "children"
|
|
1319
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "children">>;
|
|
1320
1320
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1321
1321
|
theme: Partial<{
|
|
1322
1322
|
[key: string]: any;
|
|
1323
1323
|
}>;
|
|
1324
|
-
css: import("@emotion/serialize").
|
|
1324
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1325
1325
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"style">;
|
|
1326
1326
|
/**
|
|
1327
1327
|
* Represents a script element. For inline scripts, its content should be JavaScript text.
|
|
@@ -1329,12 +1329,12 @@ export declare const Style: <AdditionalProps extends Record<string, any> = Recor
|
|
|
1329
1329
|
* @returns A script element node.
|
|
1330
1330
|
*/
|
|
1331
1331
|
export declare const Script: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1332
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "children"
|
|
1332
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "children">>;
|
|
1333
1333
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1334
1334
|
theme: Partial<{
|
|
1335
1335
|
[key: string]: any;
|
|
1336
1336
|
}>;
|
|
1337
|
-
css: import("@emotion/serialize").
|
|
1337
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1338
1338
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"script">;
|
|
1339
1339
|
/**
|
|
1340
1340
|
* Creates a title element node for document head title.
|
|
@@ -1343,12 +1343,12 @@ export declare const Script: <AdditionalProps extends Record<string, any> = Reco
|
|
|
1343
1343
|
* @returns A title element node.
|
|
1344
1344
|
*/
|
|
1345
1345
|
export declare const Title: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1346
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "children"
|
|
1346
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "children">>;
|
|
1347
1347
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1348
1348
|
theme: Partial<{
|
|
1349
1349
|
[key: string]: any;
|
|
1350
1350
|
}>;
|
|
1351
|
-
css: import("@emotion/serialize").
|
|
1351
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1352
1352
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"title">;
|
|
1353
1353
|
/**
|
|
1354
1354
|
* Represents a base element.
|
|
@@ -1356,12 +1356,12 @@ export declare const Title: <AdditionalProps extends Record<string, any> = Recor
|
|
|
1356
1356
|
* @returns A base element node.
|
|
1357
1357
|
*/
|
|
1358
1358
|
export declare const Base: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1359
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "children"
|
|
1359
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "children">>;
|
|
1360
1360
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1361
1361
|
theme: Partial<{
|
|
1362
1362
|
[key: string]: any;
|
|
1363
1363
|
}>;
|
|
1364
|
-
css: import("@emotion/serialize").
|
|
1364
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1365
1365
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"base">;
|
|
1366
1366
|
// --- Additional Text-Level Semantics ---
|
|
1367
1367
|
/**
|
|
@@ -1371,12 +1371,12 @@ export declare const Base: <AdditionalProps extends Record<string, any> = Record
|
|
|
1371
1371
|
* @returns An abbr element node.
|
|
1372
1372
|
*/
|
|
1373
1373
|
export declare const Abbr: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1374
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1374
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1375
1375
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1376
1376
|
theme: Partial<{
|
|
1377
1377
|
[key: string]: any;
|
|
1378
1378
|
}>;
|
|
1379
|
-
css: import("@emotion/serialize").
|
|
1379
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1380
1380
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"abbr">;
|
|
1381
1381
|
/**
|
|
1382
1382
|
* Represents text that should be stylistically offset from normal prose (traditionally bold).
|
|
@@ -1385,12 +1385,12 @@ export declare const Abbr: <AdditionalProps extends Record<string, any> = Record
|
|
|
1385
1385
|
* @returns A b element node.
|
|
1386
1386
|
*/
|
|
1387
1387
|
export declare const B: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1388
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1388
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1389
1389
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1390
1390
|
theme: Partial<{
|
|
1391
1391
|
[key: string]: any;
|
|
1392
1392
|
}>;
|
|
1393
|
-
css: import("@emotion/serialize").
|
|
1393
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1394
1394
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"b">;
|
|
1395
1395
|
/**
|
|
1396
1396
|
* Represents text that is isolated from its surroundings for bidirectional text formatting.
|
|
@@ -1399,12 +1399,12 @@ export declare const B: <AdditionalProps extends Record<string, any> = Record<st
|
|
|
1399
1399
|
* @returns A bdi element node.
|
|
1400
1400
|
*/
|
|
1401
1401
|
export declare const Bdi: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1402
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1402
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1403
1403
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1404
1404
|
theme: Partial<{
|
|
1405
1405
|
[key: string]: any;
|
|
1406
1406
|
}>;
|
|
1407
|
-
css: import("@emotion/serialize").
|
|
1407
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1408
1408
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"bdi">;
|
|
1409
1409
|
/**
|
|
1410
1410
|
* Overrides the current text directionality.
|
|
@@ -1413,12 +1413,12 @@ export declare const Bdi: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1413
1413
|
* @returns A bdo element node.
|
|
1414
1414
|
*/
|
|
1415
1415
|
export declare const Bdo: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1416
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1416
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1417
1417
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1418
1418
|
theme: Partial<{
|
|
1419
1419
|
[key: string]: any;
|
|
1420
1420
|
}>;
|
|
1421
|
-
css: import("@emotion/serialize").
|
|
1421
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1422
1422
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"bdo">;
|
|
1423
1423
|
/**
|
|
1424
1424
|
* Represents the title of a work (e.g., a book, a song, an essay).
|
|
@@ -1427,12 +1427,12 @@ export declare const Bdo: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1427
1427
|
* @returns A cite element node.
|
|
1428
1428
|
*/
|
|
1429
1429
|
export declare const Cite: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1430
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1430
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1431
1431
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1432
1432
|
theme: Partial<{
|
|
1433
1433
|
[key: string]: any;
|
|
1434
1434
|
}>;
|
|
1435
|
-
css: import("@emotion/serialize").
|
|
1435
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1436
1436
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"cite">;
|
|
1437
1437
|
/**
|
|
1438
1438
|
* Links a piece of content with a machine-readable translation.
|
|
@@ -1441,12 +1441,12 @@ export declare const Cite: <AdditionalProps extends Record<string, any> = Record
|
|
|
1441
1441
|
* @returns A data element node.
|
|
1442
1442
|
*/
|
|
1443
1443
|
export declare const Data: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1444
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "children"
|
|
1444
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "children">>;
|
|
1445
1445
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1446
1446
|
theme: Partial<{
|
|
1447
1447
|
[key: string]: any;
|
|
1448
1448
|
}>;
|
|
1449
|
-
css: import("@emotion/serialize").
|
|
1449
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1450
1450
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"data">;
|
|
1451
1451
|
/**
|
|
1452
1452
|
* Represents a definition of a term.
|
|
@@ -1455,12 +1455,12 @@ export declare const Data: <AdditionalProps extends Record<string, any> = Record
|
|
|
1455
1455
|
* @returns A dfn element node.
|
|
1456
1456
|
*/
|
|
1457
1457
|
export declare const Dfn: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1458
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1458
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1459
1459
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1460
1460
|
theme: Partial<{
|
|
1461
1461
|
[key: string]: any;
|
|
1462
1462
|
}>;
|
|
1463
|
-
css: import("@emotion/serialize").
|
|
1463
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1464
1464
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"dfn">;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* Represents text in an alternate voice or mood (traditionally italic).
|
|
@@ -1469,12 +1469,12 @@ export declare const Dfn: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1469
1469
|
* @returns An i element node.
|
|
1470
1470
|
*/
|
|
1471
1471
|
export declare const I: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1472
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1472
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1473
1473
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1474
1474
|
theme: Partial<{
|
|
1475
1475
|
[key: string]: any;
|
|
1476
1476
|
}>;
|
|
1477
|
-
css: import("@emotion/serialize").
|
|
1477
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1478
1478
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"i">;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* Represents user input (typically keyboard input).
|
|
@@ -1483,12 +1483,12 @@ export declare const I: <AdditionalProps extends Record<string, any> = Record<st
|
|
|
1483
1483
|
* @returns A kbd element node.
|
|
1484
1484
|
*/
|
|
1485
1485
|
export declare const Kbd: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1486
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1486
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1487
1487
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1488
1488
|
theme: Partial<{
|
|
1489
1489
|
[key: string]: any;
|
|
1490
1490
|
}>;
|
|
1491
|
-
css: import("@emotion/serialize").
|
|
1491
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1492
1492
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"kbd">;
|
|
1493
1493
|
/**
|
|
1494
1494
|
* Represents an inline quotation.
|
|
@@ -1497,12 +1497,12 @@ export declare const Kbd: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1497
1497
|
* @returns A q element node.
|
|
1498
1498
|
*/
|
|
1499
1499
|
export declare const Q: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1500
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children"
|
|
1500
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "children">>;
|
|
1501
1501
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1502
1502
|
theme: Partial<{
|
|
1503
1503
|
[key: string]: any;
|
|
1504
1504
|
}>;
|
|
1505
|
-
css: import("@emotion/serialize").
|
|
1505
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1506
1506
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"q">;
|
|
1507
1507
|
/**
|
|
1508
1508
|
* Represents fallback parenthesis for ruby annotations.
|
|
@@ -1511,12 +1511,12 @@ export declare const Q: <AdditionalProps extends Record<string, any> = Record<st
|
|
|
1511
1511
|
* @returns An rp element node.
|
|
1512
1512
|
*/
|
|
1513
1513
|
export declare const Rp: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1514
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1514
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1515
1515
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1516
1516
|
theme: Partial<{
|
|
1517
1517
|
[key: string]: any;
|
|
1518
1518
|
}>;
|
|
1519
|
-
css: import("@emotion/serialize").
|
|
1519
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1520
1520
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"rp">;
|
|
1521
1521
|
/**
|
|
1522
1522
|
* Represents the ruby text component of a ruby annotation.
|
|
@@ -1525,12 +1525,12 @@ export declare const Rp: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
1525
1525
|
* @returns An rt element node.
|
|
1526
1526
|
*/
|
|
1527
1527
|
export declare const Rt: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1528
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1528
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1529
1529
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1530
1530
|
theme: Partial<{
|
|
1531
1531
|
[key: string]: any;
|
|
1532
1532
|
}>;
|
|
1533
|
-
css: import("@emotion/serialize").
|
|
1533
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1534
1534
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"rt">;
|
|
1535
1535
|
/**
|
|
1536
1536
|
* Represents a ruby annotation.
|
|
@@ -1538,12 +1538,12 @@ export declare const Rt: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
1538
1538
|
* @returns A ruby element node.
|
|
1539
1539
|
*/
|
|
1540
1540
|
export declare const Ruby: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1541
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1541
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1542
1542
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1543
1543
|
theme: Partial<{
|
|
1544
1544
|
[key: string]: any;
|
|
1545
1545
|
}>;
|
|
1546
|
-
css: import("@emotion/serialize").
|
|
1546
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1547
1547
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"ruby">;
|
|
1548
1548
|
/**
|
|
1549
1549
|
* Represents text that is no longer accurate or relevant (strikethrough).
|
|
@@ -1552,12 +1552,12 @@ export declare const Ruby: <AdditionalProps extends Record<string, any> = Record
|
|
|
1552
1552
|
* @returns An s element node.
|
|
1553
1553
|
*/
|
|
1554
1554
|
export declare const S: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1555
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1555
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1556
1556
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1557
1557
|
theme: Partial<{
|
|
1558
1558
|
[key: string]: any;
|
|
1559
1559
|
}>;
|
|
1560
|
-
css: import("@emotion/serialize").
|
|
1560
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1561
1561
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"s">;
|
|
1562
1562
|
/**
|
|
1563
1563
|
* Represents sample output from a computer program.
|
|
@@ -1566,12 +1566,12 @@ export declare const S: <AdditionalProps extends Record<string, any> = Record<st
|
|
|
1566
1566
|
* @returns A samp element node.
|
|
1567
1567
|
*/
|
|
1568
1568
|
export declare const Samp: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1569
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1569
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1570
1570
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1571
1571
|
theme: Partial<{
|
|
1572
1572
|
[key: string]: any;
|
|
1573
1573
|
}>;
|
|
1574
|
-
css: import("@emotion/serialize").
|
|
1574
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1575
1575
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"samp">;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* Represents subscript text.
|
|
@@ -1580,12 +1580,12 @@ export declare const Samp: <AdditionalProps extends Record<string, any> = Record
|
|
|
1580
1580
|
* @returns A sub element node.
|
|
1581
1581
|
*/
|
|
1582
1582
|
export declare const Sub: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1583
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1583
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1584
1584
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1585
1585
|
theme: Partial<{
|
|
1586
1586
|
[key: string]: any;
|
|
1587
1587
|
}>;
|
|
1588
|
-
css: import("@emotion/serialize").
|
|
1588
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1589
1589
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"sub">;
|
|
1590
1590
|
/**
|
|
1591
1591
|
* Represents superscript text.
|
|
@@ -1594,12 +1594,12 @@ export declare const Sub: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1594
1594
|
* @returns A sup element node.
|
|
1595
1595
|
*/
|
|
1596
1596
|
export declare const Sup: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1597
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1597
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1598
1598
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1599
1599
|
theme: Partial<{
|
|
1600
1600
|
[key: string]: any;
|
|
1601
1601
|
}>;
|
|
1602
|
-
css: import("@emotion/serialize").
|
|
1602
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1603
1603
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"sup">;
|
|
1604
1604
|
/**
|
|
1605
1605
|
* Represents a specific period in time or a date.
|
|
@@ -1608,12 +1608,12 @@ export declare const Sup: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1608
1608
|
* @returns A time element node.
|
|
1609
1609
|
*/
|
|
1610
1610
|
export declare const Time: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1611
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "children"
|
|
1611
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "children">>;
|
|
1612
1612
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1613
1613
|
theme: Partial<{
|
|
1614
1614
|
[key: string]: any;
|
|
1615
1615
|
}>;
|
|
1616
|
-
css: import("@emotion/serialize").
|
|
1616
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1617
1617
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"time">;
|
|
1618
1618
|
/**
|
|
1619
1619
|
* Represents text that should be rendered with an unarticulated, non-textual annotation (traditionally underline).
|
|
@@ -1622,12 +1622,12 @@ export declare const Time: <AdditionalProps extends Record<string, any> = Record
|
|
|
1622
1622
|
* @returns A u element node.
|
|
1623
1623
|
*/
|
|
1624
1624
|
export declare const U: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1625
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1625
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1626
1626
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1627
1627
|
theme: Partial<{
|
|
1628
1628
|
[key: string]: any;
|
|
1629
1629
|
}>;
|
|
1630
|
-
css: import("@emotion/serialize").
|
|
1630
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1631
1631
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"u">;
|
|
1632
1632
|
/**
|
|
1633
1633
|
* Represents a variable in a mathematical expression or programming context.
|
|
@@ -1636,12 +1636,12 @@ export declare const U: <AdditionalProps extends Record<string, any> = Record<st
|
|
|
1636
1636
|
* @returns A var element node.
|
|
1637
1637
|
*/
|
|
1638
1638
|
export declare const Var: <AdditionalProps extends Record<string, any> = Record<string, any>>(children?: import("./node.type").NodeElement[] | import("./node.type").NodeElement, props?: Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1639
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1639
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1640
1640
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1641
1641
|
theme: Partial<{
|
|
1642
1642
|
[key: string]: any;
|
|
1643
1643
|
}>;
|
|
1644
|
-
css: import("@emotion/serialize").
|
|
1644
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1645
1645
|
}> & AdditionalProps, "children"> | undefined) => import("./node.type").NodeInstance<"var">;
|
|
1646
1646
|
/**
|
|
1647
1647
|
* Represents a word break opportunity. This is a void element.
|
|
@@ -1649,12 +1649,12 @@ export declare const Var: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1649
1649
|
* @returns A wbr element node.
|
|
1650
1650
|
*/
|
|
1651
1651
|
export declare const Wbr: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1652
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1652
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1653
1653
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1654
1654
|
theme: Partial<{
|
|
1655
1655
|
[key: string]: any;
|
|
1656
1656
|
}>;
|
|
1657
|
-
css: import("@emotion/serialize").
|
|
1657
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1658
1658
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"wbr">;
|
|
1659
1659
|
// --- Additional Grouping Content ---
|
|
1660
1660
|
/**
|
|
@@ -1663,12 +1663,12 @@ export declare const Wbr: <AdditionalProps extends Record<string, any> = Record<
|
|
|
1663
1663
|
* @returns An hr element node.
|
|
1664
1664
|
*/
|
|
1665
1665
|
export declare const Hr: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1666
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "children"
|
|
1666
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "children">>;
|
|
1667
1667
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1668
1668
|
theme: Partial<{
|
|
1669
1669
|
[key: string]: any;
|
|
1670
1670
|
}>;
|
|
1671
|
-
css: import("@emotion/serialize").
|
|
1671
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1672
1672
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"hr">;
|
|
1673
1673
|
/**
|
|
1674
1674
|
* Represents a group of commands that a user can perform or activate.
|
|
@@ -1676,12 +1676,12 @@ export declare const Hr: <AdditionalProps extends Record<string, any> = Record<s
|
|
|
1676
1676
|
* @returns A menu element node.
|
|
1677
1677
|
*/
|
|
1678
1678
|
export declare const Menu: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1679
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1679
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1680
1680
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1681
1681
|
theme: Partial<{
|
|
1682
1682
|
[key: string]: any;
|
|
1683
1683
|
}>;
|
|
1684
|
-
css: import("@emotion/serialize").
|
|
1684
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1685
1685
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"menu">;
|
|
1686
1686
|
/**
|
|
1687
1687
|
* Represents the parts of a document or application that contain search or filtering controls.
|
|
@@ -1689,12 +1689,12 @@ export declare const Menu: <AdditionalProps extends Record<string, any> = Record
|
|
|
1689
1689
|
* @returns A search element node.
|
|
1690
1690
|
*/
|
|
1691
1691
|
export declare const Search: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1692
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1692
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1693
1693
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1694
1694
|
theme: Partial<{
|
|
1695
1695
|
[key: string]: any;
|
|
1696
1696
|
}>;
|
|
1697
|
-
css: import("@emotion/serialize").
|
|
1697
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1698
1698
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"search">;
|
|
1699
1699
|
// --- Additional Embedded Content ---
|
|
1700
1700
|
/**
|
|
@@ -1703,12 +1703,12 @@ export declare const Search: <AdditionalProps extends Record<string, any> = Reco
|
|
|
1703
1703
|
* @returns An embed element node.
|
|
1704
1704
|
*/
|
|
1705
1705
|
export declare const Embed: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1706
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "children"
|
|
1706
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "children">>;
|
|
1707
1707
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1708
1708
|
theme: Partial<{
|
|
1709
1709
|
[key: string]: any;
|
|
1710
1710
|
}>;
|
|
1711
|
-
css: import("@emotion/serialize").
|
|
1711
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1712
1712
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"embed">;
|
|
1713
1713
|
/**
|
|
1714
1714
|
* Represents an external resource, which can be treated as an image, a nested Browse context, or content to be handled by a plugin.
|
|
@@ -1716,12 +1716,12 @@ export declare const Embed: <AdditionalProps extends Record<string, any> = Recor
|
|
|
1716
1716
|
* @returns An object element node.
|
|
1717
1717
|
*/
|
|
1718
1718
|
export declare const ObjectElement: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1719
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "children"
|
|
1719
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "children">>;
|
|
1720
1720
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1721
1721
|
theme: Partial<{
|
|
1722
1722
|
[key: string]: any;
|
|
1723
1723
|
}>;
|
|
1724
|
-
css: import("@emotion/serialize").
|
|
1724
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1725
1725
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"object">;
|
|
1726
1726
|
/**
|
|
1727
1727
|
* Defines parameters for an <object> element. This is a void element.
|
|
@@ -1729,12 +1729,12 @@ export declare const ObjectElement: <AdditionalProps extends Record<string, any>
|
|
|
1729
1729
|
* @returns A param element node.
|
|
1730
1730
|
*/
|
|
1731
1731
|
export declare const Param: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1732
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "children"
|
|
1732
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "children">>;
|
|
1733
1733
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1734
1734
|
theme: Partial<{
|
|
1735
1735
|
[key: string]: any;
|
|
1736
1736
|
}>;
|
|
1737
|
-
css: import("@emotion/serialize").
|
|
1737
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1738
1738
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"param">;
|
|
1739
1739
|
/**
|
|
1740
1740
|
* Represents an image map, with clickable areas.
|
|
@@ -1742,12 +1742,12 @@ export declare const Param: <AdditionalProps extends Record<string, any> = Recor
|
|
|
1742
1742
|
* @returns A map element node.
|
|
1743
1743
|
*/
|
|
1744
1744
|
export declare const MapElement: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1745
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "children"
|
|
1745
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "children">>;
|
|
1746
1746
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1747
1747
|
theme: Partial<{
|
|
1748
1748
|
[key: string]: any;
|
|
1749
1749
|
}>;
|
|
1750
|
-
css: import("@emotion/serialize").
|
|
1750
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1751
1751
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"map">;
|
|
1752
1752
|
/**
|
|
1753
1753
|
* Defines a client-side image map area. This is a void element.
|
|
@@ -1755,12 +1755,12 @@ export declare const MapElement: <AdditionalProps extends Record<string, any> =
|
|
|
1755
1755
|
* @returns An area element node.
|
|
1756
1756
|
*/
|
|
1757
1757
|
export declare const Area: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1758
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "children"
|
|
1758
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "children">>;
|
|
1759
1759
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1760
1760
|
theme: Partial<{
|
|
1761
1761
|
[key: string]: any;
|
|
1762
1762
|
}>;
|
|
1763
|
-
css: import("@emotion/serialize").
|
|
1763
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1764
1764
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"area">;
|
|
1765
1765
|
// --- Additional Forms Elements ---
|
|
1766
1766
|
/**
|
|
@@ -1769,12 +1769,12 @@ export declare const Area: <AdditionalProps extends Record<string, any> = Record
|
|
|
1769
1769
|
* @returns A datalist element node.
|
|
1770
1770
|
*/
|
|
1771
1771
|
export declare const Datalist: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1772
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "children"
|
|
1772
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "children">>;
|
|
1773
1773
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1774
1774
|
theme: Partial<{
|
|
1775
1775
|
[key: string]: any;
|
|
1776
1776
|
}>;
|
|
1777
|
-
css: import("@emotion/serialize").
|
|
1777
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1778
1778
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"datalist">;
|
|
1779
1779
|
/**
|
|
1780
1780
|
* Represents the result of a calculation or user action.
|
|
@@ -1782,12 +1782,12 @@ export declare const Datalist: <AdditionalProps extends Record<string, any> = Re
|
|
|
1782
1782
|
* @returns An output element node.
|
|
1783
1783
|
*/
|
|
1784
1784
|
export declare const Output: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1785
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>, "children"
|
|
1785
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>, "children">>;
|
|
1786
1786
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1787
1787
|
theme: Partial<{
|
|
1788
1788
|
[key: string]: any;
|
|
1789
1789
|
}>;
|
|
1790
|
-
css: import("@emotion/serialize").
|
|
1790
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1791
1791
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"output">;
|
|
1792
1792
|
/**
|
|
1793
1793
|
* Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
|
|
@@ -1795,12 +1795,12 @@ export declare const Output: <AdditionalProps extends Record<string, any> = Reco
|
|
|
1795
1795
|
* @returns A progress element node.
|
|
1796
1796
|
*/
|
|
1797
1797
|
export declare const Progress: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1798
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "children"
|
|
1798
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "children">>;
|
|
1799
1799
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1800
1800
|
theme: Partial<{
|
|
1801
1801
|
[key: string]: any;
|
|
1802
1802
|
}>;
|
|
1803
|
-
css: import("@emotion/serialize").
|
|
1803
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1804
1804
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"progress">;
|
|
1805
1805
|
/**
|
|
1806
1806
|
* Represents either a scalar value within a known range or a fractional value.
|
|
@@ -1808,12 +1808,12 @@ export declare const Progress: <AdditionalProps extends Record<string, any> = Re
|
|
|
1808
1808
|
* @returns A meter element node.
|
|
1809
1809
|
*/
|
|
1810
1810
|
export declare const Meter: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1811
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "children"
|
|
1811
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "children">>;
|
|
1812
1812
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1813
1813
|
theme: Partial<{
|
|
1814
1814
|
[key: string]: any;
|
|
1815
1815
|
}>;
|
|
1816
|
-
css: import("@emotion/serialize").
|
|
1816
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1817
1817
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"meter">;
|
|
1818
1818
|
// --- Additional Scripting & Document Elements ---
|
|
1819
1819
|
/**
|
|
@@ -1822,12 +1822,12 @@ export declare const Meter: <AdditionalProps extends Record<string, any> = Recor
|
|
|
1822
1822
|
* @returns A noscript element node.
|
|
1823
1823
|
*/
|
|
1824
1824
|
export declare const Noscript: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1825
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1825
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1826
1826
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1827
1827
|
theme: Partial<{
|
|
1828
1828
|
[key: string]: any;
|
|
1829
1829
|
}>;
|
|
1830
|
-
css: import("@emotion/serialize").
|
|
1830
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1831
1831
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"noscript">;
|
|
1832
1832
|
/**
|
|
1833
1833
|
* 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.
|
|
@@ -1835,12 +1835,12 @@ export declare const Noscript: <AdditionalProps extends Record<string, any> = Re
|
|
|
1835
1835
|
* @returns A template element node.
|
|
1836
1836
|
*/
|
|
1837
1837
|
export declare const Template: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1838
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "children"
|
|
1838
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "children">>;
|
|
1839
1839
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1840
1840
|
theme: Partial<{
|
|
1841
1841
|
[key: string]: any;
|
|
1842
1842
|
}>;
|
|
1843
|
-
css: import("@emotion/serialize").
|
|
1843
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1844
1844
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"template">;
|
|
1845
1845
|
// --- Additional Sections Elements ---
|
|
1846
1846
|
/**
|
|
@@ -1849,11 +1849,11 @@ export declare const Template: <AdditionalProps extends Record<string, any> = Re
|
|
|
1849
1849
|
* @returns An hgroup element node.
|
|
1850
1850
|
*/
|
|
1851
1851
|
export declare const Hgroup: <AdditionalProps extends Record<string, any> = Record<string, any>>(props?: (Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children" | "props" | "style" | "theme" | keyof import("react").CSSProperties> & import("react").Attributes & import("react").CSSProperties & Partial<{
|
|
1852
|
-
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children"
|
|
1852
|
+
props: Partial<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "children">>;
|
|
1853
1853
|
children: import("./node.type").NodeElement[] | import("./node.type").NodeElement;
|
|
1854
1854
|
theme: Partial<{
|
|
1855
1855
|
[key: string]: any;
|
|
1856
1856
|
}>;
|
|
1857
|
-
css: import("@emotion/serialize").
|
|
1857
|
+
css: import("@emotion/serialize").CSSInterpolation;
|
|
1858
1858
|
}> & AdditionalProps) | undefined) => import("./node.type").NodeInstance<"hgroup">;
|
|
1859
1859
|
//# sourceMappingURL=html.node.d.ts.map
|