@feliperohdee/satori 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1305 @@
1
+ /**
2
+ * @file
3
+ * HTML elements and CSS properties that Satori supports.
4
+ *
5
+ * This code is adapted from React v19.1 types.
6
+ * MIT License
7
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
8
+ *
9
+ * @see {@link https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts React typings `@types/react`}
10
+ */
11
+
12
+ /**
13
+ * Subset of CSS properties that Satori supports.
14
+ *
15
+ * @todo Add properties.
16
+ */
17
+ interface CSSProperties {
18
+ [prop: string]: string | number | undefined;
19
+ }
20
+ type Booleanish = 'true' | 'false' | boolean;
21
+ type CrossOrigin = 'anonymous' | 'use-credentials' | '' | undefined;
22
+ interface SVGProps<T> extends SVGAttributes<T> {
23
+ }
24
+ interface SVGLineElementAttributes<T> extends SVGProps<T> {
25
+ }
26
+ interface SVGTextElementAttributes<T> extends SVGProps<T> {
27
+ }
28
+ interface DOMAttributes<T> {
29
+ children?: JSXNode | undefined;
30
+ }
31
+ type AriaRole = 'alert' | 'alertdialog' | 'application' | 'article' | 'banner' | 'button' | 'cell' | 'checkbox' | 'columnheader' | 'combobox' | 'complementary' | 'contentinfo' | 'definition' | 'dialog' | 'directory' | 'document' | 'feed' | 'figure' | 'form' | 'grid' | 'gridcell' | 'group' | 'heading' | 'img' | 'link' | 'list' | 'listbox' | 'listitem' | 'log' | 'main' | 'marquee' | 'math' | 'menu' | 'menubar' | 'menuitem' | 'menuitemcheckbox' | 'menuitemradio' | 'navigation' | 'none' | 'note' | 'option' | 'presentation' | 'progressbar' | 'radio' | 'radiogroup' | 'region' | 'row' | 'rowgroup' | 'rowheader' | 'scrollbar' | 'search' | 'searchbox' | 'separator' | 'slider' | 'spinbutton' | 'status' | 'switch' | 'tab' | 'table' | 'tablist' | 'tabpanel' | 'term' | 'textbox' | 'timer' | 'toolbar' | 'tooltip' | 'tree' | 'treegrid' | 'treeitem' | (string & {});
32
+ interface AriaAttributes {
33
+ /** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
34
+ 'aria-activedescendant'?: string | undefined;
35
+ /** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */
36
+ 'aria-atomic'?: Booleanish | undefined;
37
+ /**
38
+ * Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
39
+ * presented if they are made.
40
+ */
41
+ 'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both' | undefined;
42
+ /** Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user. */
43
+ /**
44
+ * Defines a string value that labels the current element, which is intended to be converted into Braille.
45
+ * @see aria-label.
46
+ */
47
+ 'aria-braillelabel'?: string | undefined;
48
+ /**
49
+ * Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.
50
+ * @see aria-roledescription.
51
+ */
52
+ 'aria-brailleroledescription'?: string | undefined;
53
+ 'aria-busy'?: Booleanish | undefined;
54
+ /**
55
+ * Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
56
+ * @see aria-pressed @see aria-selected.
57
+ */
58
+ 'aria-checked'?: boolean | 'false' | 'mixed' | 'true' | undefined;
59
+ /**
60
+ * Defines the total number of columns in a table, grid, or treegrid.
61
+ * @see aria-colindex.
62
+ */
63
+ 'aria-colcount'?: number | undefined;
64
+ /**
65
+ * Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
66
+ * @see aria-colcount @see aria-colspan.
67
+ */
68
+ 'aria-colindex'?: number | undefined;
69
+ /**
70
+ * Defines a human readable text alternative of aria-colindex.
71
+ * @see aria-rowindextext.
72
+ */
73
+ 'aria-colindextext'?: string | undefined;
74
+ /**
75
+ * Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
76
+ * @see aria-colindex @see aria-rowspan.
77
+ */
78
+ 'aria-colspan'?: number | undefined;
79
+ /**
80
+ * Identifies the element (or elements) whose contents or presence are controlled by the current element.
81
+ * @see aria-owns.
82
+ */
83
+ 'aria-controls'?: string | undefined;
84
+ /** Indicates the element that represents the current item within a container or set of related elements. */
85
+ 'aria-current'?: boolean | 'false' | 'true' | 'page' | 'step' | 'location' | 'date' | 'time' | undefined;
86
+ /**
87
+ * Identifies the element (or elements) that describes the object.
88
+ * @see aria-labelledby
89
+ */
90
+ 'aria-describedby'?: string | undefined;
91
+ /**
92
+ * Defines a string value that describes or annotates the current element.
93
+ * @see related aria-describedby.
94
+ */
95
+ 'aria-description'?: string | undefined;
96
+ /**
97
+ * Identifies the element that provides a detailed, extended description for the object.
98
+ * @see aria-describedby.
99
+ */
100
+ 'aria-details'?: string | undefined;
101
+ /**
102
+ * Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
103
+ * @see aria-hidden @see aria-readonly.
104
+ */
105
+ 'aria-disabled'?: Booleanish | undefined;
106
+ /**
107
+ * Indicates what functions can be performed when a dragged object is released on the drop target.
108
+ * @deprecated in ARIA 1.1
109
+ */
110
+ 'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup' | undefined;
111
+ /**
112
+ * Identifies the element that provides an error message for the object.
113
+ * @see aria-invalid @see aria-describedby.
114
+ */
115
+ 'aria-errormessage'?: string | undefined;
116
+ /** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
117
+ 'aria-expanded'?: Booleanish | undefined;
118
+ /**
119
+ * Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
120
+ * allows assistive technology to override the general default of reading in document source order.
121
+ */
122
+ 'aria-flowto'?: string | undefined;
123
+ /**
124
+ * Indicates an element's "grabbed" state in a drag-and-drop operation.
125
+ * @deprecated in ARIA 1.1
126
+ */
127
+ 'aria-grabbed'?: Booleanish | undefined;
128
+ /** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
129
+ 'aria-haspopup'?: boolean | 'false' | 'true' | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog' | undefined;
130
+ /**
131
+ * Indicates whether the element is exposed to an accessibility API.
132
+ * @see aria-disabled.
133
+ */
134
+ 'aria-hidden'?: Booleanish | undefined;
135
+ /**
136
+ * Indicates the entered value does not conform to the format expected by the application.
137
+ * @see aria-errormessage.
138
+ */
139
+ 'aria-invalid'?: boolean | 'false' | 'true' | 'grammar' | 'spelling' | undefined;
140
+ /** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
141
+ 'aria-keyshortcuts'?: string | undefined;
142
+ /**
143
+ * Defines a string value that labels the current element.
144
+ * @see aria-labelledby.
145
+ */
146
+ 'aria-label'?: string | undefined;
147
+ /**
148
+ * Identifies the element (or elements) that labels the current element.
149
+ * @see aria-describedby.
150
+ */
151
+ 'aria-labelledby'?: string | undefined;
152
+ /** Defines the hierarchical level of an element within a structure. */
153
+ 'aria-level'?: number | undefined;
154
+ /** Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region. */
155
+ 'aria-live'?: 'off' | 'assertive' | 'polite' | undefined;
156
+ /** Indicates whether an element is modal when displayed. */
157
+ 'aria-modal'?: Booleanish | undefined;
158
+ /** Indicates whether a text box accepts multiple lines of input or only a single line. */
159
+ 'aria-multiline'?: Booleanish | undefined;
160
+ /** Indicates that the user may select more than one item from the current selectable descendants. */
161
+ 'aria-multiselectable'?: Booleanish | undefined;
162
+ /** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
163
+ 'aria-orientation'?: 'horizontal' | 'vertical' | undefined;
164
+ /**
165
+ * Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
166
+ * between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
167
+ * @see aria-controls.
168
+ */
169
+ 'aria-owns'?: string | undefined;
170
+ /**
171
+ * Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
172
+ * A hint could be a sample value or a brief description of the expected format.
173
+ */
174
+ 'aria-placeholder'?: string | undefined;
175
+ /**
176
+ * Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
177
+ * @see aria-setsize.
178
+ */
179
+ 'aria-posinset'?: number | undefined;
180
+ /**
181
+ * Indicates the current "pressed" state of toggle buttons.
182
+ * @see aria-checked @see aria-selected.
183
+ */
184
+ 'aria-pressed'?: boolean | 'false' | 'mixed' | 'true' | undefined;
185
+ /**
186
+ * Indicates that the element is not editable, but is otherwise operable.
187
+ * @see aria-disabled.
188
+ */
189
+ 'aria-readonly'?: Booleanish | undefined;
190
+ /**
191
+ * Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
192
+ * @see aria-atomic.
193
+ */
194
+ 'aria-relevant'?: 'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals' | undefined;
195
+ /** Indicates that user input is required on the element before a form may be submitted. */
196
+ 'aria-required'?: Booleanish | undefined;
197
+ /** Defines a human-readable, author-localized description for the role of an element. */
198
+ 'aria-roledescription'?: string | undefined;
199
+ /**
200
+ * Defines the total number of rows in a table, grid, or treegrid.
201
+ * @see aria-rowindex.
202
+ */
203
+ 'aria-rowcount'?: number | undefined;
204
+ /**
205
+ * Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
206
+ * @see aria-rowcount @see aria-rowspan.
207
+ */
208
+ 'aria-rowindex'?: number | undefined;
209
+ /**
210
+ * Defines a human readable text alternative of aria-rowindex.
211
+ * @see aria-colindextext.
212
+ */
213
+ 'aria-rowindextext'?: string | undefined;
214
+ /**
215
+ * Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
216
+ * @see aria-rowindex @see aria-colspan.
217
+ */
218
+ 'aria-rowspan'?: number | undefined;
219
+ /**
220
+ * Indicates the current "selected" state of various widgets.
221
+ * @see aria-checked @see aria-pressed.
222
+ */
223
+ 'aria-selected'?: Booleanish | undefined;
224
+ /**
225
+ * Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
226
+ * @see aria-posinset.
227
+ */
228
+ 'aria-setsize'?: number | undefined;
229
+ /** Indicates if items in a table or grid are sorted in ascending or descending order. */
230
+ 'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other' | undefined;
231
+ /** Defines the maximum allowed value for a range widget. */
232
+ 'aria-valuemax'?: number | undefined;
233
+ /** Defines the minimum allowed value for a range widget. */
234
+ 'aria-valuemin'?: number | undefined;
235
+ /**
236
+ * Defines the current value for a range widget.
237
+ * @see aria-valuetext.
238
+ */
239
+ 'aria-valuenow'?: number | undefined;
240
+ /** Defines the human readable text alternative of aria-valuenow for a range widget. */
241
+ 'aria-valuetext'?: string | undefined;
242
+ }
243
+ interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
244
+ defaultChecked?: boolean | undefined;
245
+ defaultValue?: string | number | readonly string[] | undefined;
246
+ suppressContentEditableWarning?: boolean | undefined;
247
+ suppressHydrationWarning?: boolean | undefined;
248
+ accessKey?: string | undefined;
249
+ autoCapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters' | undefined | (string & {});
250
+ autoFocus?: boolean | undefined;
251
+ className?: string | undefined;
252
+ contentEditable?: Booleanish | 'inherit' | 'plaintext-only' | undefined;
253
+ contextMenu?: string | undefined;
254
+ dir?: string | undefined;
255
+ draggable?: Booleanish | undefined;
256
+ enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
257
+ hidden?: boolean | undefined;
258
+ id?: string | undefined;
259
+ lang?: string | undefined;
260
+ nonce?: string | undefined;
261
+ slot?: string | undefined;
262
+ spellCheck?: Booleanish | undefined;
263
+ style?: CSSProperties | undefined;
264
+ tabIndex?: number | undefined;
265
+ title?: string | undefined;
266
+ translate?: 'yes' | 'no' | undefined;
267
+ radioGroup?: string | undefined;
268
+ role?: AriaRole | undefined;
269
+ about?: string | undefined;
270
+ content?: string | undefined;
271
+ datatype?: string | undefined;
272
+ inlist?: any;
273
+ prefix?: string | undefined;
274
+ property?: string | undefined;
275
+ rel?: string | undefined;
276
+ resource?: string | undefined;
277
+ rev?: string | undefined;
278
+ typeof?: string | undefined;
279
+ vocab?: string | undefined;
280
+ autoCorrect?: string | undefined;
281
+ autoSave?: string | undefined;
282
+ color?: string | undefined;
283
+ itemProp?: string | undefined;
284
+ itemScope?: boolean | undefined;
285
+ itemType?: string | undefined;
286
+ itemID?: string | undefined;
287
+ itemRef?: string | undefined;
288
+ results?: number | undefined;
289
+ security?: string | undefined;
290
+ unselectable?: 'on' | 'off' | undefined;
291
+ popover?: '' | 'auto' | 'manual' | undefined;
292
+ popoverTargetAction?: 'toggle' | 'show' | 'hide' | undefined;
293
+ popoverTarget?: string | undefined;
294
+ /**
295
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert
296
+ */
297
+ inert?: boolean | undefined;
298
+ /**
299
+ * Hints at the type of data that might be entered by the user while editing the element or its contents
300
+ * @see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}
301
+ */
302
+ inputMode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search' | undefined;
303
+ /**
304
+ * Specify that a standard HTML element should behave like a defined custom built-in element
305
+ * @see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}
306
+ */
307
+ is?: string | undefined;
308
+ /**
309
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}
310
+ */
311
+ exportparts?: string | undefined;
312
+ /**
313
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}
314
+ */
315
+ part?: string | undefined;
316
+ }
317
+ type DetailedHTMLProps<E extends HTMLAttributes<T>, T> = E;
318
+ type HTMLAttributeReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
319
+ type HTMLAttributeAnchorTarget = '_self' | '_blank' | '_parent' | '_top' | (string & {});
320
+ interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
321
+ download?: any;
322
+ href?: string | undefined;
323
+ hrefLang?: string | undefined;
324
+ media?: string | undefined;
325
+ ping?: string | undefined;
326
+ target?: HTMLAttributeAnchorTarget | undefined;
327
+ type?: string | undefined;
328
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
329
+ }
330
+ interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {
331
+ }
332
+ interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
333
+ alt?: string | undefined;
334
+ coords?: string | undefined;
335
+ download?: any;
336
+ href?: string | undefined;
337
+ hrefLang?: string | undefined;
338
+ media?: string | undefined;
339
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
340
+ shape?: string | undefined;
341
+ target?: string | undefined;
342
+ }
343
+ interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
344
+ href?: string | undefined;
345
+ target?: string | undefined;
346
+ }
347
+ interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
348
+ cite?: string | undefined;
349
+ }
350
+ interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
351
+ disabled?: boolean | undefined;
352
+ form?: string | undefined;
353
+ formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
354
+ formEncType?: string | undefined;
355
+ formMethod?: string | undefined;
356
+ formNoValidate?: boolean | undefined;
357
+ formTarget?: string | undefined;
358
+ name?: string | undefined;
359
+ type?: 'submit' | 'reset' | 'button' | undefined;
360
+ value?: string | readonly string[] | number | undefined;
361
+ }
362
+ interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
363
+ height?: number | string | undefined;
364
+ width?: number | string | undefined;
365
+ }
366
+ interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
367
+ span?: number | undefined;
368
+ width?: number | string | undefined;
369
+ }
370
+ interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
371
+ span?: number | undefined;
372
+ }
373
+ interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
374
+ value?: string | readonly string[] | number | undefined;
375
+ }
376
+ interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
377
+ open?: boolean | undefined;
378
+ name?: string | undefined;
379
+ }
380
+ interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
381
+ cite?: string | undefined;
382
+ dateTime?: string | undefined;
383
+ }
384
+ interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
385
+ open?: boolean | undefined;
386
+ }
387
+ interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
388
+ height?: number | string | undefined;
389
+ src?: string | undefined;
390
+ type?: string | undefined;
391
+ width?: number | string | undefined;
392
+ }
393
+ interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
394
+ disabled?: boolean | undefined;
395
+ form?: string | undefined;
396
+ name?: string | undefined;
397
+ }
398
+ interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
399
+ acceptCharset?: string | undefined;
400
+ action?: string | undefined | ((formData: FormData) => void | Promise<void>);
401
+ autoComplete?: string | undefined;
402
+ encType?: string | undefined;
403
+ method?: string | undefined;
404
+ name?: string | undefined;
405
+ noValidate?: boolean | undefined;
406
+ target?: string | undefined;
407
+ }
408
+ interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
409
+ manifest?: string | undefined;
410
+ }
411
+ interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
412
+ allow?: string | undefined;
413
+ allowFullScreen?: boolean | undefined;
414
+ allowTransparency?: boolean | undefined;
415
+ /** @deprecated */
416
+ frameBorder?: number | string | undefined;
417
+ height?: number | string | undefined;
418
+ loading?: 'eager' | 'lazy' | undefined;
419
+ /** @deprecated */
420
+ marginHeight?: number | undefined;
421
+ /** @deprecated */
422
+ marginWidth?: number | undefined;
423
+ name?: string | undefined;
424
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
425
+ sandbox?: string | undefined;
426
+ /** @deprecated */
427
+ scrolling?: string | undefined;
428
+ seamless?: boolean | undefined;
429
+ src?: string | undefined;
430
+ srcDoc?: string | undefined;
431
+ width?: number | string | undefined;
432
+ }
433
+ interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
434
+ alt?: string | undefined;
435
+ crossOrigin?: CrossOrigin;
436
+ decoding?: 'async' | 'auto' | 'sync' | undefined;
437
+ fetchPriority?: 'high' | 'low' | 'auto';
438
+ height?: number | string | undefined;
439
+ loading?: 'eager' | 'lazy' | undefined;
440
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
441
+ sizes?: string | undefined;
442
+ src?: string | undefined;
443
+ srcSet?: string | undefined;
444
+ useMap?: string | undefined;
445
+ width?: number | string | undefined;
446
+ }
447
+ interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
448
+ cite?: string | undefined;
449
+ dateTime?: string | undefined;
450
+ }
451
+ type HTMLInputTypeAttribute = 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week' | (string & {});
452
+ type AutoFillAddressKind = 'billing' | 'shipping';
453
+ type AutoFillBase = '' | 'off' | 'on';
454
+ type AutoFillContactField = 'email' | 'tel' | 'tel-area-code' | 'tel-country-code' | 'tel-extension' | 'tel-local' | 'tel-local-prefix' | 'tel-local-suffix' | 'tel-national';
455
+ type AutoFillContactKind = 'home' | 'mobile' | 'work';
456
+ type AutoFillCredentialField = 'webauthn';
457
+ type AutoFillNormalField = 'additional-name' | 'address-level1' | 'address-level2' | 'address-level3' | 'address-level4' | 'address-line1' | 'address-line2' | 'address-line3' | 'bday-day' | 'bday-month' | 'bday-year' | 'cc-csc' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-family-name' | 'cc-given-name' | 'cc-name' | 'cc-number' | 'cc-type' | 'country' | 'country-name' | 'current-password' | 'family-name' | 'given-name' | 'honorific-prefix' | 'honorific-suffix' | 'name' | 'new-password' | 'one-time-code' | 'organization' | 'postal-code' | 'street-address' | 'transaction-amount' | 'transaction-currency' | 'username';
458
+ type OptionalPrefixToken<T extends string> = `${T} ` | '';
459
+ type OptionalPostfixToken<T extends string> = ` ${T}` | '';
460
+ type AutoFillField = AutoFillNormalField | `${OptionalPrefixToken<AutoFillContactKind>}${AutoFillContactField}`;
461
+ type AutoFillSection = `section-${string}`;
462
+ type AutoFill = AutoFillBase | `${OptionalPrefixToken<AutoFillSection>}${OptionalPrefixToken<AutoFillAddressKind>}${AutoFillField}${OptionalPostfixToken<AutoFillCredentialField>}`;
463
+ type HTMLInputAutoCompleteAttribute = AutoFill | (string & {});
464
+ interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
465
+ accept?: string | undefined;
466
+ alt?: string | undefined;
467
+ autoComplete?: HTMLInputAutoCompleteAttribute | undefined;
468
+ capture?: boolean | 'user' | 'environment' | undefined;
469
+ checked?: boolean | undefined;
470
+ disabled?: boolean | undefined;
471
+ form?: string | undefined;
472
+ formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
473
+ formEncType?: string | undefined;
474
+ formMethod?: string | undefined;
475
+ formNoValidate?: boolean | undefined;
476
+ formTarget?: string | undefined;
477
+ height?: number | string | undefined;
478
+ list?: string | undefined;
479
+ max?: number | string | undefined;
480
+ maxLength?: number | undefined;
481
+ min?: number | string | undefined;
482
+ minLength?: number | undefined;
483
+ multiple?: boolean | undefined;
484
+ name?: string | undefined;
485
+ pattern?: string | undefined;
486
+ placeholder?: string | undefined;
487
+ readOnly?: boolean | undefined;
488
+ required?: boolean | undefined;
489
+ size?: number | undefined;
490
+ src?: string | undefined;
491
+ step?: number | string | undefined;
492
+ type?: HTMLInputTypeAttribute | undefined;
493
+ value?: string | readonly string[] | number | undefined;
494
+ width?: number | string | undefined;
495
+ }
496
+ interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
497
+ challenge?: string | undefined;
498
+ disabled?: boolean | undefined;
499
+ form?: string | undefined;
500
+ keyType?: string | undefined;
501
+ keyParams?: string | undefined;
502
+ name?: string | undefined;
503
+ }
504
+ interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
505
+ form?: string | undefined;
506
+ htmlFor?: string | undefined;
507
+ }
508
+ interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
509
+ value?: string | readonly string[] | number | undefined;
510
+ }
511
+ interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
512
+ as?: string | undefined;
513
+ blocking?: 'render' | (string & {}) | undefined;
514
+ crossOrigin?: CrossOrigin;
515
+ fetchPriority?: 'high' | 'low' | 'auto';
516
+ href?: string | undefined;
517
+ hrefLang?: string | undefined;
518
+ integrity?: string | undefined;
519
+ media?: string | undefined;
520
+ imageSrcSet?: string | undefined;
521
+ imageSizes?: string | undefined;
522
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
523
+ sizes?: string | undefined;
524
+ type?: string | undefined;
525
+ charSet?: string | undefined;
526
+ precedence?: string | undefined;
527
+ }
528
+ interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
529
+ name?: string | undefined;
530
+ }
531
+ interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
532
+ type?: string | undefined;
533
+ }
534
+ interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
535
+ autoPlay?: boolean | undefined;
536
+ controls?: boolean | undefined;
537
+ controlsList?: string | undefined;
538
+ crossOrigin?: CrossOrigin;
539
+ loop?: boolean | undefined;
540
+ mediaGroup?: string | undefined;
541
+ muted?: boolean | undefined;
542
+ playsInline?: boolean | undefined;
543
+ preload?: string | undefined;
544
+ src?: string | undefined;
545
+ }
546
+ interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
547
+ charSet?: string | undefined;
548
+ content?: string | undefined;
549
+ httpEquiv?: string | undefined;
550
+ media?: string | undefined;
551
+ name?: string | undefined;
552
+ }
553
+ interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
554
+ form?: string | undefined;
555
+ high?: number | undefined;
556
+ low?: number | undefined;
557
+ max?: number | string | undefined;
558
+ min?: number | string | undefined;
559
+ optimum?: number | undefined;
560
+ value?: string | readonly string[] | number | undefined;
561
+ }
562
+ interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
563
+ cite?: string | undefined;
564
+ }
565
+ interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
566
+ classID?: string | undefined;
567
+ data?: string | undefined;
568
+ form?: string | undefined;
569
+ height?: number | string | undefined;
570
+ name?: string | undefined;
571
+ type?: string | undefined;
572
+ useMap?: string | undefined;
573
+ width?: number | string | undefined;
574
+ wmode?: string | undefined;
575
+ }
576
+ interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
577
+ reversed?: boolean | undefined;
578
+ start?: number | undefined;
579
+ type?: '1' | 'a' | 'A' | 'i' | 'I' | undefined;
580
+ }
581
+ interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
582
+ disabled?: boolean | undefined;
583
+ label?: string | undefined;
584
+ }
585
+ interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
586
+ disabled?: boolean | undefined;
587
+ label?: string | undefined;
588
+ selected?: boolean | undefined;
589
+ value?: string | readonly string[] | number | undefined;
590
+ }
591
+ interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
592
+ form?: string | undefined;
593
+ htmlFor?: string | undefined;
594
+ name?: string | undefined;
595
+ }
596
+ interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
597
+ name?: string | undefined;
598
+ value?: string | readonly string[] | number | undefined;
599
+ }
600
+ interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
601
+ max?: number | string | undefined;
602
+ value?: string | readonly string[] | number | undefined;
603
+ }
604
+ interface SlotHTMLAttributes<T> extends HTMLAttributes<T> {
605
+ name?: string | undefined;
606
+ }
607
+ interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
608
+ async?: boolean | undefined;
609
+ blocking?: 'render' | (string & {}) | undefined;
610
+ /** @deprecated */
611
+ charSet?: string | undefined;
612
+ crossOrigin?: CrossOrigin;
613
+ defer?: boolean | undefined;
614
+ integrity?: string | undefined;
615
+ noModule?: boolean | undefined;
616
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
617
+ src?: string | undefined;
618
+ type?: string | undefined;
619
+ }
620
+ interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
621
+ autoComplete?: string | undefined;
622
+ disabled?: boolean | undefined;
623
+ form?: string | undefined;
624
+ multiple?: boolean | undefined;
625
+ name?: string | undefined;
626
+ required?: boolean | undefined;
627
+ size?: number | undefined;
628
+ value?: string | readonly string[] | number | undefined;
629
+ }
630
+ interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
631
+ height?: number | string | undefined;
632
+ media?: string | undefined;
633
+ sizes?: string | undefined;
634
+ src?: string | undefined;
635
+ srcSet?: string | undefined;
636
+ type?: string | undefined;
637
+ width?: number | string | undefined;
638
+ }
639
+ interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
640
+ blocking?: 'render' | (string & {}) | undefined;
641
+ media?: string | undefined;
642
+ scoped?: boolean | undefined;
643
+ type?: string | undefined;
644
+ href?: string | undefined;
645
+ precedence?: string | undefined;
646
+ }
647
+ interface TableHTMLAttributes<T> extends HTMLAttributes<T> {
648
+ align?: 'left' | 'center' | 'right' | undefined;
649
+ bgcolor?: string | undefined;
650
+ border?: number | undefined;
651
+ cellPadding?: number | string | undefined;
652
+ cellSpacing?: number | string | undefined;
653
+ frame?: boolean | undefined;
654
+ rules?: 'none' | 'groups' | 'rows' | 'columns' | 'all' | undefined;
655
+ summary?: string | undefined;
656
+ width?: number | string | undefined;
657
+ }
658
+ interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
659
+ autoComplete?: string | undefined;
660
+ cols?: number | undefined;
661
+ dirName?: string | undefined;
662
+ disabled?: boolean | undefined;
663
+ form?: string | undefined;
664
+ maxLength?: number | undefined;
665
+ minLength?: number | undefined;
666
+ name?: string | undefined;
667
+ placeholder?: string | undefined;
668
+ readOnly?: boolean | undefined;
669
+ required?: boolean | undefined;
670
+ rows?: number | undefined;
671
+ value?: string | readonly string[] | number | undefined;
672
+ wrap?: string | undefined;
673
+ }
674
+ interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
675
+ align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined;
676
+ colSpan?: number | undefined;
677
+ headers?: string | undefined;
678
+ rowSpan?: number | undefined;
679
+ scope?: string | undefined;
680
+ abbr?: string | undefined;
681
+ height?: number | string | undefined;
682
+ width?: number | string | undefined;
683
+ valign?: 'top' | 'middle' | 'bottom' | 'baseline' | undefined;
684
+ }
685
+ interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
686
+ align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined;
687
+ colSpan?: number | undefined;
688
+ headers?: string | undefined;
689
+ rowSpan?: number | undefined;
690
+ scope?: string | undefined;
691
+ abbr?: string | undefined;
692
+ }
693
+ interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
694
+ dateTime?: string | undefined;
695
+ }
696
+ interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
697
+ default?: boolean | undefined;
698
+ kind?: string | undefined;
699
+ label?: string | undefined;
700
+ src?: string | undefined;
701
+ srcLang?: string | undefined;
702
+ }
703
+ interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
704
+ height?: number | string | undefined;
705
+ playsInline?: boolean | undefined;
706
+ poster?: string | undefined;
707
+ width?: number | string | undefined;
708
+ disablePictureInPicture?: boolean | undefined;
709
+ disableRemotePlayback?: boolean | undefined;
710
+ }
711
+ interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
712
+ suppressHydrationWarning?: boolean | undefined;
713
+ className?: string | undefined;
714
+ color?: string | undefined;
715
+ height?: number | string | undefined;
716
+ id?: string | undefined;
717
+ lang?: string | undefined;
718
+ max?: number | string | undefined;
719
+ media?: string | undefined;
720
+ method?: string | undefined;
721
+ min?: number | string | undefined;
722
+ name?: string | undefined;
723
+ style?: CSSProperties | undefined;
724
+ target?: string | undefined;
725
+ type?: string | undefined;
726
+ width?: number | string | undefined;
727
+ role?: AriaRole | undefined;
728
+ tabIndex?: number | undefined;
729
+ crossOrigin?: CrossOrigin;
730
+ accentHeight?: number | string | undefined;
731
+ accumulate?: 'none' | 'sum' | undefined;
732
+ additive?: 'replace' | 'sum' | undefined;
733
+ alignmentBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit' | undefined;
734
+ allowReorder?: 'no' | 'yes' | undefined;
735
+ alphabetic?: number | string | undefined;
736
+ amplitude?: number | string | undefined;
737
+ arabicForm?: 'initial' | 'medial' | 'terminal' | 'isolated' | undefined;
738
+ ascent?: number | string | undefined;
739
+ attributeName?: string | undefined;
740
+ attributeType?: string | undefined;
741
+ autoReverse?: Booleanish | undefined;
742
+ azimuth?: number | string | undefined;
743
+ baseFrequency?: number | string | undefined;
744
+ baselineShift?: number | string | undefined;
745
+ baseProfile?: number | string | undefined;
746
+ bbox?: number | string | undefined;
747
+ begin?: number | string | undefined;
748
+ bias?: number | string | undefined;
749
+ by?: number | string | undefined;
750
+ calcMode?: number | string | undefined;
751
+ capHeight?: number | string | undefined;
752
+ clip?: number | string | undefined;
753
+ clipPath?: string | undefined;
754
+ clipPathUnits?: number | string | undefined;
755
+ clipRule?: number | string | undefined;
756
+ colorInterpolation?: number | string | undefined;
757
+ colorInterpolationFilters?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit' | undefined;
758
+ colorProfile?: number | string | undefined;
759
+ colorRendering?: number | string | undefined;
760
+ contentScriptType?: number | string | undefined;
761
+ contentStyleType?: number | string | undefined;
762
+ cursor?: number | string | undefined;
763
+ cx?: number | string | undefined;
764
+ cy?: number | string | undefined;
765
+ d?: string | undefined;
766
+ decelerate?: number | string | undefined;
767
+ descent?: number | string | undefined;
768
+ diffuseConstant?: number | string | undefined;
769
+ direction?: number | string | undefined;
770
+ display?: number | string | undefined;
771
+ divisor?: number | string | undefined;
772
+ dominantBaseline?: number | string | undefined;
773
+ dur?: number | string | undefined;
774
+ dx?: number | string | undefined;
775
+ dy?: number | string | undefined;
776
+ edgeMode?: number | string | undefined;
777
+ elevation?: number | string | undefined;
778
+ enableBackground?: number | string | undefined;
779
+ end?: number | string | undefined;
780
+ exponent?: number | string | undefined;
781
+ externalResourcesRequired?: Booleanish | undefined;
782
+ fill?: string | undefined;
783
+ fillOpacity?: number | string | undefined;
784
+ fillRule?: 'nonzero' | 'evenodd' | 'inherit' | undefined;
785
+ filter?: string | undefined;
786
+ filterRes?: number | string | undefined;
787
+ filterUnits?: number | string | undefined;
788
+ floodColor?: number | string | undefined;
789
+ floodOpacity?: number | string | undefined;
790
+ focusable?: Booleanish | 'auto' | undefined;
791
+ fontFamily?: string | undefined;
792
+ fontSize?: number | string | undefined;
793
+ fontSizeAdjust?: number | string | undefined;
794
+ fontStretch?: number | string | undefined;
795
+ fontStyle?: number | string | undefined;
796
+ fontVariant?: number | string | undefined;
797
+ fontWeight?: number | string | undefined;
798
+ format?: number | string | undefined;
799
+ fr?: number | string | undefined;
800
+ from?: number | string | undefined;
801
+ fx?: number | string | undefined;
802
+ fy?: number | string | undefined;
803
+ g1?: number | string | undefined;
804
+ g2?: number | string | undefined;
805
+ glyphName?: number | string | undefined;
806
+ glyphOrientationHorizontal?: number | string | undefined;
807
+ glyphOrientationVertical?: number | string | undefined;
808
+ glyphRef?: number | string | undefined;
809
+ gradientTransform?: string | undefined;
810
+ gradientUnits?: string | undefined;
811
+ hanging?: number | string | undefined;
812
+ horizAdvX?: number | string | undefined;
813
+ horizOriginX?: number | string | undefined;
814
+ href?: string | undefined;
815
+ ideographic?: number | string | undefined;
816
+ imageRendering?: number | string | undefined;
817
+ in2?: number | string | undefined;
818
+ in?: string | undefined;
819
+ intercept?: number | string | undefined;
820
+ k1?: number | string | undefined;
821
+ k2?: number | string | undefined;
822
+ k3?: number | string | undefined;
823
+ k4?: number | string | undefined;
824
+ k?: number | string | undefined;
825
+ kernelMatrix?: number | string | undefined;
826
+ kernelUnitLength?: number | string | undefined;
827
+ kerning?: number | string | undefined;
828
+ keyPoints?: number | string | undefined;
829
+ keySplines?: number | string | undefined;
830
+ keyTimes?: number | string | undefined;
831
+ lengthAdjust?: number | string | undefined;
832
+ letterSpacing?: number | string | undefined;
833
+ lightingColor?: number | string | undefined;
834
+ limitingConeAngle?: number | string | undefined;
835
+ local?: number | string | undefined;
836
+ markerEnd?: string | undefined;
837
+ markerHeight?: number | string | undefined;
838
+ markerMid?: string | undefined;
839
+ markerStart?: string | undefined;
840
+ markerUnits?: number | string | undefined;
841
+ markerWidth?: number | string | undefined;
842
+ mask?: string | undefined;
843
+ maskContentUnits?: number | string | undefined;
844
+ maskUnits?: number | string | undefined;
845
+ mathematical?: number | string | undefined;
846
+ mode?: number | string | undefined;
847
+ numOctaves?: number | string | undefined;
848
+ offset?: number | string | undefined;
849
+ opacity?: number | string | undefined;
850
+ operator?: number | string | undefined;
851
+ order?: number | string | undefined;
852
+ orient?: number | string | undefined;
853
+ orientation?: number | string | undefined;
854
+ origin?: number | string | undefined;
855
+ overflow?: number | string | undefined;
856
+ overlinePosition?: number | string | undefined;
857
+ overlineThickness?: number | string | undefined;
858
+ paintOrder?: number | string | undefined;
859
+ panose1?: number | string | undefined;
860
+ path?: string | undefined;
861
+ pathLength?: number | string | undefined;
862
+ patternContentUnits?: string | undefined;
863
+ patternTransform?: number | string | undefined;
864
+ patternUnits?: string | undefined;
865
+ pointerEvents?: number | string | undefined;
866
+ points?: string | undefined;
867
+ pointsAtX?: number | string | undefined;
868
+ pointsAtY?: number | string | undefined;
869
+ pointsAtZ?: number | string | undefined;
870
+ preserveAlpha?: Booleanish | undefined;
871
+ preserveAspectRatio?: string | undefined;
872
+ primitiveUnits?: number | string | undefined;
873
+ r?: number | string | undefined;
874
+ radius?: number | string | undefined;
875
+ refX?: number | string | undefined;
876
+ refY?: number | string | undefined;
877
+ renderingIntent?: number | string | undefined;
878
+ repeatCount?: number | string | undefined;
879
+ repeatDur?: number | string | undefined;
880
+ requiredExtensions?: number | string | undefined;
881
+ requiredFeatures?: number | string | undefined;
882
+ restart?: number | string | undefined;
883
+ result?: string | undefined;
884
+ rotate?: number | string | undefined;
885
+ rx?: number | string | undefined;
886
+ ry?: number | string | undefined;
887
+ scale?: number | string | undefined;
888
+ seed?: number | string | undefined;
889
+ shapeRendering?: number | string | undefined;
890
+ slope?: number | string | undefined;
891
+ spacing?: number | string | undefined;
892
+ specularConstant?: number | string | undefined;
893
+ specularExponent?: number | string | undefined;
894
+ speed?: number | string | undefined;
895
+ spreadMethod?: string | undefined;
896
+ startOffset?: number | string | undefined;
897
+ stdDeviation?: number | string | undefined;
898
+ stemh?: number | string | undefined;
899
+ stemv?: number | string | undefined;
900
+ stitchTiles?: number | string | undefined;
901
+ stopColor?: string | undefined;
902
+ stopOpacity?: number | string | undefined;
903
+ strikethroughPosition?: number | string | undefined;
904
+ strikethroughThickness?: number | string | undefined;
905
+ string?: number | string | undefined;
906
+ stroke?: string | undefined;
907
+ strokeDasharray?: string | number | undefined;
908
+ strokeDashoffset?: string | number | undefined;
909
+ strokeLinecap?: 'butt' | 'round' | 'square' | 'inherit' | undefined;
910
+ strokeLinejoin?: 'miter' | 'round' | 'bevel' | 'inherit' | undefined;
911
+ strokeMiterlimit?: number | string | undefined;
912
+ strokeOpacity?: number | string | undefined;
913
+ strokeWidth?: number | string | undefined;
914
+ surfaceScale?: number | string | undefined;
915
+ systemLanguage?: number | string | undefined;
916
+ tableValues?: number | string | undefined;
917
+ targetX?: number | string | undefined;
918
+ targetY?: number | string | undefined;
919
+ textAnchor?: string | undefined;
920
+ textDecoration?: number | string | undefined;
921
+ textLength?: number | string | undefined;
922
+ textRendering?: number | string | undefined;
923
+ to?: number | string | undefined;
924
+ transform?: string | undefined;
925
+ u1?: number | string | undefined;
926
+ u2?: number | string | undefined;
927
+ underlinePosition?: number | string | undefined;
928
+ underlineThickness?: number | string | undefined;
929
+ unicode?: number | string | undefined;
930
+ unicodeBidi?: number | string | undefined;
931
+ unicodeRange?: number | string | undefined;
932
+ unitsPerEm?: number | string | undefined;
933
+ vAlphabetic?: number | string | undefined;
934
+ values?: string | undefined;
935
+ vectorEffect?: number | string | undefined;
936
+ version?: string | undefined;
937
+ vertAdvY?: number | string | undefined;
938
+ vertOriginX?: number | string | undefined;
939
+ vertOriginY?: number | string | undefined;
940
+ vHanging?: number | string | undefined;
941
+ vIdeographic?: number | string | undefined;
942
+ viewBox?: string | undefined;
943
+ viewTarget?: number | string | undefined;
944
+ visibility?: number | string | undefined;
945
+ vMathematical?: number | string | undefined;
946
+ widths?: number | string | undefined;
947
+ wordSpacing?: number | string | undefined;
948
+ writingMode?: number | string | undefined;
949
+ x1?: number | string | undefined;
950
+ x2?: number | string | undefined;
951
+ x?: number | string | undefined;
952
+ xChannelSelector?: string | undefined;
953
+ xHeight?: number | string | undefined;
954
+ xlinkActuate?: string | undefined;
955
+ xlinkArcrole?: string | undefined;
956
+ xlinkHref?: string | undefined;
957
+ xlinkRole?: string | undefined;
958
+ xlinkShow?: string | undefined;
959
+ xlinkTitle?: string | undefined;
960
+ xlinkType?: string | undefined;
961
+ xmlBase?: string | undefined;
962
+ xmlLang?: string | undefined;
963
+ xmlns?: string | undefined;
964
+ xmlnsXlink?: string | undefined;
965
+ xmlSpace?: string | undefined;
966
+ y1?: number | string | undefined;
967
+ y2?: number | string | undefined;
968
+ y?: number | string | undefined;
969
+ yChannelSelector?: string | undefined;
970
+ z?: number | string | undefined;
971
+ zoomAndPan?: string | undefined;
972
+ }
973
+ interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
974
+ allowFullScreen?: boolean | undefined;
975
+ allowpopups?: boolean | undefined;
976
+ autosize?: boolean | undefined;
977
+ blinkfeatures?: string | undefined;
978
+ disableblinkfeatures?: string | undefined;
979
+ disableguestresize?: boolean | undefined;
980
+ disablewebsecurity?: boolean | undefined;
981
+ guestinstance?: string | undefined;
982
+ httpreferrer?: string | undefined;
983
+ nodeintegration?: boolean | undefined;
984
+ partition?: string | undefined;
985
+ plugins?: boolean | undefined;
986
+ preload?: string | undefined;
987
+ src?: string | undefined;
988
+ useragent?: string | undefined;
989
+ webpreferences?: string | undefined;
990
+ }
991
+ /**
992
+ * Subset of HTML elements that Satori supports.
993
+ *
994
+ * @todo remove unsupported elements.
995
+ */
996
+ interface DefinedIntrinsicElements {
997
+ a: DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
998
+ abbr: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
999
+ address: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1000
+ area: DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>;
1001
+ article: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1002
+ aside: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1003
+ audio: DetailedHTMLProps<AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>;
1004
+ b: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1005
+ base: DetailedHTMLProps<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>;
1006
+ bdi: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1007
+ bdo: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1008
+ big: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1009
+ blockquote: DetailedHTMLProps<BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
1010
+ body: DetailedHTMLProps<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>;
1011
+ br: DetailedHTMLProps<HTMLAttributes<HTMLBRElement>, HTMLBRElement>;
1012
+ button: DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
1013
+ canvas: DetailedHTMLProps<CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>;
1014
+ caption: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1015
+ center: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1016
+ cite: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1017
+ code: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1018
+ col: DetailedHTMLProps<ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>;
1019
+ colgroup: DetailedHTMLProps<ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>;
1020
+ data: DetailedHTMLProps<DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>;
1021
+ datalist: DetailedHTMLProps<HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>;
1022
+ dd: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1023
+ del: DetailedHTMLProps<DelHTMLAttributes<HTMLModElement>, HTMLModElement>;
1024
+ details: DetailedHTMLProps<DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>;
1025
+ dfn: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1026
+ dialog: DetailedHTMLProps<DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>;
1027
+ div: DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
1028
+ dl: DetailedHTMLProps<HTMLAttributes<HTMLDListElement>, HTMLDListElement>;
1029
+ dt: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1030
+ em: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1031
+ embed: DetailedHTMLProps<EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>;
1032
+ fieldset: DetailedHTMLProps<FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>;
1033
+ figcaption: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1034
+ figure: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1035
+ footer: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1036
+ form: DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>;
1037
+ h1: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1038
+ h2: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1039
+ h3: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1040
+ h4: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1041
+ h5: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1042
+ h6: DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
1043
+ head: DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>;
1044
+ header: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1045
+ hgroup: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1046
+ hr: DetailedHTMLProps<HTMLAttributes<HTMLHRElement>, HTMLHRElement>;
1047
+ html: DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>;
1048
+ i: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1049
+ iframe: DetailedHTMLProps<IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>;
1050
+ img: DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
1051
+ input: DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
1052
+ ins: DetailedHTMLProps<InsHTMLAttributes<HTMLModElement>, HTMLModElement>;
1053
+ kbd: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1054
+ keygen: DetailedHTMLProps<KeygenHTMLAttributes<HTMLElement>, HTMLElement>;
1055
+ label: DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>;
1056
+ legend: DetailedHTMLProps<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>;
1057
+ li: DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>;
1058
+ link: DetailedHTMLProps<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>;
1059
+ main: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1060
+ map: DetailedHTMLProps<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>;
1061
+ mark: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1062
+ menu: DetailedHTMLProps<MenuHTMLAttributes<HTMLElement>, HTMLElement>;
1063
+ menuitem: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1064
+ meta: DetailedHTMLProps<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>;
1065
+ meter: DetailedHTMLProps<MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>;
1066
+ nav: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1067
+ noindex: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1068
+ noscript: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1069
+ object: DetailedHTMLProps<ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>;
1070
+ ol: DetailedHTMLProps<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>;
1071
+ optgroup: DetailedHTMLProps<OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>;
1072
+ option: DetailedHTMLProps<OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>;
1073
+ output: DetailedHTMLProps<OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>;
1074
+ p: DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>;
1075
+ param: DetailedHTMLProps<ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>;
1076
+ picture: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1077
+ pre: DetailedHTMLProps<HTMLAttributes<HTMLPreElement>, HTMLPreElement>;
1078
+ progress: DetailedHTMLProps<ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>;
1079
+ q: DetailedHTMLProps<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
1080
+ rp: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1081
+ rt: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1082
+ ruby: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1083
+ s: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1084
+ samp: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1085
+ search: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1086
+ slot: DetailedHTMLProps<SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>;
1087
+ script: DetailedHTMLProps<ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>;
1088
+ section: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1089
+ select: DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>;
1090
+ small: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1091
+ source: DetailedHTMLProps<SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>;
1092
+ span: DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>;
1093
+ strong: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1094
+ style: DetailedHTMLProps<StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>;
1095
+ sub: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1096
+ summary: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1097
+ sup: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1098
+ table: DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>;
1099
+ template: DetailedHTMLProps<HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>;
1100
+ tbody: DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
1101
+ td: DetailedHTMLProps<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>;
1102
+ textarea: DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>;
1103
+ tfoot: DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
1104
+ th: DetailedHTMLProps<ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>;
1105
+ thead: DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
1106
+ time: DetailedHTMLProps<TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>;
1107
+ title: DetailedHTMLProps<HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>;
1108
+ tr: DetailedHTMLProps<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>;
1109
+ track: DetailedHTMLProps<TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>;
1110
+ u: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1111
+ ul: DetailedHTMLProps<HTMLAttributes<HTMLUListElement>, HTMLUListElement>;
1112
+ var: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1113
+ video: DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>;
1114
+ wbr: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
1115
+ webview: DetailedHTMLProps<WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>;
1116
+ svg: SVGProps<SVGSVGElement>;
1117
+ animate: SVGProps<SVGElement>;
1118
+ animateMotion: SVGProps<SVGElement>;
1119
+ animateTransform: SVGProps<SVGElement>;
1120
+ circle: SVGProps<SVGCircleElement>;
1121
+ clipPath: SVGProps<SVGClipPathElement>;
1122
+ defs: SVGProps<SVGDefsElement>;
1123
+ desc: SVGProps<SVGDescElement>;
1124
+ ellipse: SVGProps<SVGEllipseElement>;
1125
+ feBlend: SVGProps<SVGFEBlendElement>;
1126
+ feColorMatrix: SVGProps<SVGFEColorMatrixElement>;
1127
+ feComponentTransfer: SVGProps<SVGFEComponentTransferElement>;
1128
+ feComposite: SVGProps<SVGFECompositeElement>;
1129
+ feConvolveMatrix: SVGProps<SVGFEConvolveMatrixElement>;
1130
+ feDiffuseLighting: SVGProps<SVGFEDiffuseLightingElement>;
1131
+ feDisplacementMap: SVGProps<SVGFEDisplacementMapElement>;
1132
+ feDistantLight: SVGProps<SVGFEDistantLightElement>;
1133
+ feDropShadow: SVGProps<SVGFEDropShadowElement>;
1134
+ feFlood: SVGProps<SVGFEFloodElement>;
1135
+ feFuncA: SVGProps<SVGFEFuncAElement>;
1136
+ feFuncB: SVGProps<SVGFEFuncBElement>;
1137
+ feFuncG: SVGProps<SVGFEFuncGElement>;
1138
+ feFuncR: SVGProps<SVGFEFuncRElement>;
1139
+ feGaussianBlur: SVGProps<SVGFEGaussianBlurElement>;
1140
+ feImage: SVGProps<SVGFEImageElement>;
1141
+ feMerge: SVGProps<SVGFEMergeElement>;
1142
+ feMergeNode: SVGProps<SVGFEMergeNodeElement>;
1143
+ feMorphology: SVGProps<SVGFEMorphologyElement>;
1144
+ feOffset: SVGProps<SVGFEOffsetElement>;
1145
+ fePointLight: SVGProps<SVGFEPointLightElement>;
1146
+ feSpecularLighting: SVGProps<SVGFESpecularLightingElement>;
1147
+ feSpotLight: SVGProps<SVGFESpotLightElement>;
1148
+ feTile: SVGProps<SVGFETileElement>;
1149
+ feTurbulence: SVGProps<SVGFETurbulenceElement>;
1150
+ filter: SVGProps<SVGFilterElement>;
1151
+ foreignObject: SVGProps<SVGForeignObjectElement>;
1152
+ g: SVGProps<SVGGElement>;
1153
+ image: SVGProps<SVGImageElement>;
1154
+ line: SVGLineElementAttributes<SVGLineElement>;
1155
+ linearGradient: SVGProps<SVGLinearGradientElement>;
1156
+ marker: SVGProps<SVGMarkerElement>;
1157
+ mask: SVGProps<SVGMaskElement>;
1158
+ metadata: SVGProps<SVGMetadataElement>;
1159
+ mpath: SVGProps<SVGElement>;
1160
+ path: SVGProps<SVGPathElement>;
1161
+ pattern: SVGProps<SVGPatternElement>;
1162
+ polygon: SVGProps<SVGPolygonElement>;
1163
+ polyline: SVGProps<SVGPolylineElement>;
1164
+ radialGradient: SVGProps<SVGRadialGradientElement>;
1165
+ rect: SVGProps<SVGRectElement>;
1166
+ set: SVGProps<SVGSetElement>;
1167
+ stop: SVGProps<SVGStopElement>;
1168
+ switch: SVGProps<SVGSwitchElement>;
1169
+ symbol: SVGProps<SVGSymbolElement>;
1170
+ text: SVGTextElementAttributes<SVGTextElement>;
1171
+ textPath: SVGProps<SVGTextPathElement>;
1172
+ tspan: SVGProps<SVGTSpanElement>;
1173
+ use: SVGProps<SVGUseElement>;
1174
+ view: SVGProps<SVGViewElement>;
1175
+ }
1176
+
1177
+ /**
1178
+ * @file
1179
+ * These types are adapted from React v19.1
1180
+ *
1181
+ * @see {@link https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts `@types/react`}
1182
+ */
1183
+
1184
+ type JSXKey = string | number | bigint;
1185
+ /**
1186
+ * Represents a JSX element.
1187
+ *
1188
+ * Where {@link JSXNode} represents everything that can be rendered,
1189
+ * `JSXElement` only represents JSX.
1190
+ *
1191
+ * @template P The type of the props object
1192
+ * @template T The type of the component or tag
1193
+ *
1194
+ * @example
1195
+ *
1196
+ * ```tsx
1197
+ * const element: JSXElement = <div />;
1198
+ * ```
1199
+ */
1200
+ interface JSXElement<P = unknown, T extends string | FC<P> = string | FC<P>> {
1201
+ type: T;
1202
+ props: P;
1203
+ key: string | null;
1204
+ }
1205
+ type AwaitedJSXNode = JSXElement | string | number | bigint | Iterable<JSXNode> | boolean | null | undefined;
1206
+ /**
1207
+ * Represents all of the things React can render.
1208
+ *
1209
+ * Where {@link JSXElement} only represents JSX, `JSXNode` represents
1210
+ * everything that can be rendered.
1211
+ *
1212
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/react-types/reactnode/ React TypeScript Cheatsheet}
1213
+ *
1214
+ * @example
1215
+ *
1216
+ * ```tsx
1217
+ * // Typing children
1218
+ * type Props = { children: JSXNode }
1219
+ *
1220
+ * const Component = ({ children }: Props) => <div>{children}</div>
1221
+ *
1222
+ * <Component>hello</Component>
1223
+ * ```
1224
+ *
1225
+ * @example
1226
+ *
1227
+ * ```tsx
1228
+ * // Typing a custom element
1229
+ * type Props = { customElement: JSXNode }
1230
+ *
1231
+ * const Component = ({ customElement }: Props) => <div>{customElement}</div>
1232
+ *
1233
+ * <Component customElement={<div>hello</div>} />
1234
+ * ```
1235
+ */
1236
+ type JSXNode = JSXElement | string | number | bigint | Iterable<JSXNode> | boolean | null | undefined | Promise<AwaitedJSXNode>;
1237
+ /**
1238
+ * Represents the type of a function component. Can optionally receive a type
1239
+ * argument that represents the props the component receives.
1240
+ *
1241
+ * @template P The props the component accepts.
1242
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/function_components React TypeScript Cheatsheet}
1243
+ *
1244
+ * @example
1245
+ *
1246
+ * ```tsx
1247
+ * // With props:
1248
+ * type Props = { name: string }
1249
+ *
1250
+ * const MyComponent: FC<Props> = (props) => {
1251
+ * return <div>{props.name}</div>
1252
+ * }
1253
+ * ```
1254
+ *
1255
+ * @example
1256
+ *
1257
+ * ```tsx
1258
+ * // Without props:
1259
+ * const MyComponentWithoutProps: FC = () => {
1260
+ * return <div>MyComponentWithoutProps</div>
1261
+ * }
1262
+ * ```
1263
+ */
1264
+ type FC<P = {}> = (props: P) => JSXNode | Promise<JSXNode>;
1265
+
1266
+ /**
1267
+ * @file
1268
+ * Minimal JSX runtime for Satori adapted from React v19.1.
1269
+ *
1270
+ * Use the `@jsxImportSource` pragma directive in files containing JSX for Satori.
1271
+ *
1272
+ * @see {@link https://github.com/facebook/react/blob/v19.1.0/packages/react/src/jsx/ReactJSXElement.js React JSX runtime implementation}
1273
+ * @see {@link https://www.typescriptlang.org/docs/handbook/jsx.html TypeScript: JSX reference}
1274
+ * @see {@link https://www.typescriptlang.org/tsconfig/#jsxImportSource TSConfig: using "jsxImportSource" or `@jsxImportSource` pragma directive}
1275
+ * @see {@link https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts React typings `@types/react`}
1276
+ * @see {@link https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/jsx-runtime.d.ts React typings for `jsx-runtime`}
1277
+ */
1278
+
1279
+ declare namespace JSX {
1280
+ /**
1281
+ * **WARNING**: Satori does not support class components.
1282
+ * @see {@link https://github.com/vercel/satori?tab=readme-ov-file#jsx Satori JSX documentation}
1283
+ */
1284
+ type ElementClass = never;
1285
+ type ElementType = string | FC<any>;
1286
+ type Element = JSXElement<any, any>;
1287
+ interface ElementAttributesProperty {
1288
+ props: {};
1289
+ }
1290
+ interface ElementChildrenAttribute {
1291
+ children: {};
1292
+ }
1293
+ interface IntrinsicElements extends DefinedIntrinsicElements {
1294
+ }
1295
+ interface IntrinsicAttributes {
1296
+ /** **INFO**: Allowed as prop, but will be ignored by Satori. */
1297
+ key?: JSXKey | undefined | null;
1298
+ }
1299
+ }
1300
+ declare function jsx(type: string | FC<any>, props: Record<string, unknown>, key?: JSXKey | undefined | null): JSXElement;
1301
+ declare const jsxs: typeof jsx;
1302
+ declare const jsxDEV: typeof jsx;
1303
+ declare const Fragment: unique symbol;
1304
+
1305
+ export { CSSProperties as C, FC as F, JSXNode as J, JSXElement as a, Fragment as b, JSX as c, JSXKey as d, jsxs as e, jsxDEV as f, jsx as j };