next-intlayer 8.5.1 → 8.6.0

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.
@@ -5,438 +5,438 @@ import { useRewriteURL } from "./client/useRewriteURL.js";
5
5
  import { generateStaticParams } from "./generateStaticParams.js";
6
6
  import { LocalParams, LocalPromiseParams, Next14LayoutIntlayer, Next14PageIntlayer, Next15LayoutIntlayer, Next15PageIntlayer, NextLayoutIntlayer, NextPageIntlayer } from "./types/NextPage.js";
7
7
  import { index_d_exports } from "./markdown/index.js";
8
- import * as react from "react";
8
+ import * as _$react from "react";
9
9
  import { IntlayerClientContext, IntlayerNode, getDictionary, getIntlayer, localeCookie, localeInStorage, setLocaleCookie, setLocaleInStorage, t, useDictionary, useDictionaryAsync, useDictionaryDynamic, useI18n, useIntl, useIntlayer, useLoadDynamic, useLocaleCookie, useLocaleStorage } from "react-intlayer";
10
10
 
11
11
  //#region src/index.d.ts
12
12
  /**
13
13
  * @deprecated import from next-intlayer/markdown instead
14
14
  */
15
- declare const MarkdownProvider: react.FC<index_d_exports.MarkdownProviderOptions & {
15
+ declare const MarkdownProvider: _$react.FC<index_d_exports.MarkdownProviderOptions & {
16
16
  components?: {} & {
17
- object?: react.FC<react.DetailedHTMLProps<react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
18
- html?: react.FC<react.DetailedHTMLProps<react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>;
19
- head?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
20
- body?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>;
21
- main?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
22
- header?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
23
- footer?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
24
- nav?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
25
- aside?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
26
- article?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
27
- section?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
28
- div?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
29
- span?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
30
- h1?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
31
- h2?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
32
- h3?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
33
- h4?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
34
- h5?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
35
- h6?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
36
- p?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
37
- a?: react.FC<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
38
- strong?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
39
- b?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
40
- em?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
41
- i?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
42
- u?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
43
- s?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
44
- del?: react.FC<react.DetailedHTMLProps<react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
45
- ins?: react.FC<react.DetailedHTMLProps<react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
46
- mark?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
47
- small?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
48
- sub?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
49
- sup?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
50
- code?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
51
- pre?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
52
- blockquote?: react.FC<react.DetailedHTMLProps<react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
53
- q?: react.FC<react.DetailedHTMLProps<react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
54
- cite?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
55
- abbr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
56
- address?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
57
- time?: react.FC<react.DetailedHTMLProps<react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
58
- kbd?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
59
- samp?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
60
- var?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
61
- ul?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
62
- ol?: react.FC<react.DetailedHTMLProps<react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
63
- li?: react.FC<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
64
- dl?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
65
- dt?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
66
- dd?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
67
- table?: react.FC<react.DetailedHTMLProps<react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
68
- thead?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
69
- tbody?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
70
- tfoot?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
71
- tr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
72
- th?: react.FC<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
73
- td?: react.FC<react.DetailedHTMLProps<react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
74
- caption?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
75
- colgroup?: react.FC<react.DetailedHTMLProps<react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
76
- col?: react.FC<react.DetailedHTMLProps<react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
77
- form?: react.FC<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
78
- input?: react.FC<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
79
- textarea?: react.FC<react.DetailedHTMLProps<react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
80
- button?: react.FC<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
81
- select?: react.FC<react.DetailedHTMLProps<react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
82
- option?: react.FC<react.DetailedHTMLProps<react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
83
- optgroup?: react.FC<react.DetailedHTMLProps<react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
84
- label?: react.FC<react.DetailedHTMLProps<react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
85
- fieldset?: react.FC<react.DetailedHTMLProps<react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
86
- legend?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
87
- datalist?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>;
88
- output?: react.FC<react.DetailedHTMLProps<react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
89
- progress?: react.FC<react.DetailedHTMLProps<react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
90
- meter?: react.FC<react.DetailedHTMLProps<react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
91
- img?: react.FC<react.DetailedHTMLProps<react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
92
- video?: react.FC<react.DetailedHTMLProps<react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
93
- audio?: react.FC<react.DetailedHTMLProps<react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
94
- source?: react.FC<react.DetailedHTMLProps<react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>;
95
- track?: react.FC<react.DetailedHTMLProps<react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>;
96
- picture?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
97
- figure?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
98
- figcaption?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
99
- iframe?: react.FC<react.DetailedHTMLProps<react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
100
- embed?: react.FC<react.DetailedHTMLProps<react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
101
- canvas?: react.FC<react.DetailedHTMLProps<react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>;
102
- svg?: react.FC<react.SVGProps<SVGSVGElement>>;
103
- details?: react.FC<react.DetailedHTMLProps<react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
104
- summary?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
105
- dialog?: react.FC<react.DetailedHTMLProps<react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
106
- br?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
107
- hr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
108
- wbr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
109
- ruby?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
110
- rt?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
111
- rp?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
112
- bdi?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
113
- bdo?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
114
- data?: react.FC<react.DetailedHTMLProps<react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>;
115
- template?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>>;
116
- slot?: react.FC<react.DetailedHTMLProps<react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>>;
17
+ object?: _$react.FC<_$react.DetailedHTMLProps<_$react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
18
+ html?: _$react.FC<_$react.DetailedHTMLProps<_$react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>;
19
+ head?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
20
+ body?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>;
21
+ main?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
22
+ header?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
23
+ footer?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
24
+ nav?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
25
+ aside?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
26
+ article?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
27
+ section?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
28
+ div?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
29
+ span?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
30
+ h1?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
31
+ h2?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
32
+ h3?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
33
+ h4?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
34
+ h5?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
35
+ h6?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
36
+ p?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
37
+ a?: _$react.FC<_$react.DetailedHTMLProps<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
38
+ strong?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
39
+ b?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
40
+ em?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
41
+ i?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
42
+ u?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
43
+ s?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
44
+ del?: _$react.FC<_$react.DetailedHTMLProps<_$react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
45
+ ins?: _$react.FC<_$react.DetailedHTMLProps<_$react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
46
+ mark?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
47
+ small?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
48
+ sub?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
49
+ sup?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
50
+ code?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
51
+ pre?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
52
+ blockquote?: _$react.FC<_$react.DetailedHTMLProps<_$react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
53
+ q?: _$react.FC<_$react.DetailedHTMLProps<_$react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
54
+ cite?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
55
+ abbr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
56
+ address?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
57
+ time?: _$react.FC<_$react.DetailedHTMLProps<_$react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
58
+ kbd?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
59
+ samp?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
60
+ var?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
61
+ ul?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
62
+ ol?: _$react.FC<_$react.DetailedHTMLProps<_$react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
63
+ li?: _$react.FC<_$react.DetailedHTMLProps<_$react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
64
+ dl?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
65
+ dt?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
66
+ dd?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
67
+ table?: _$react.FC<_$react.DetailedHTMLProps<_$react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
68
+ thead?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
69
+ tbody?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
70
+ tfoot?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
71
+ tr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
72
+ th?: _$react.FC<_$react.DetailedHTMLProps<_$react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
73
+ td?: _$react.FC<_$react.DetailedHTMLProps<_$react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
74
+ caption?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
75
+ colgroup?: _$react.FC<_$react.DetailedHTMLProps<_$react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
76
+ col?: _$react.FC<_$react.DetailedHTMLProps<_$react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
77
+ form?: _$react.FC<_$react.DetailedHTMLProps<_$react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
78
+ input?: _$react.FC<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
79
+ textarea?: _$react.FC<_$react.DetailedHTMLProps<_$react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
80
+ button?: _$react.FC<_$react.DetailedHTMLProps<_$react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
81
+ select?: _$react.FC<_$react.DetailedHTMLProps<_$react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
82
+ option?: _$react.FC<_$react.DetailedHTMLProps<_$react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
83
+ optgroup?: _$react.FC<_$react.DetailedHTMLProps<_$react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
84
+ label?: _$react.FC<_$react.DetailedHTMLProps<_$react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
85
+ fieldset?: _$react.FC<_$react.DetailedHTMLProps<_$react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
86
+ legend?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
87
+ datalist?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>;
88
+ output?: _$react.FC<_$react.DetailedHTMLProps<_$react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
89
+ progress?: _$react.FC<_$react.DetailedHTMLProps<_$react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
90
+ meter?: _$react.FC<_$react.DetailedHTMLProps<_$react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
91
+ img?: _$react.FC<_$react.DetailedHTMLProps<_$react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
92
+ video?: _$react.FC<_$react.DetailedHTMLProps<_$react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
93
+ audio?: _$react.FC<_$react.DetailedHTMLProps<_$react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
94
+ source?: _$react.FC<_$react.DetailedHTMLProps<_$react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>;
95
+ track?: _$react.FC<_$react.DetailedHTMLProps<_$react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>;
96
+ picture?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
97
+ figure?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
98
+ figcaption?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
99
+ iframe?: _$react.FC<_$react.DetailedHTMLProps<_$react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
100
+ embed?: _$react.FC<_$react.DetailedHTMLProps<_$react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
101
+ canvas?: _$react.FC<_$react.DetailedHTMLProps<_$react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>;
102
+ svg?: _$react.FC<_$react.SVGProps<SVGSVGElement>>;
103
+ details?: _$react.FC<_$react.DetailedHTMLProps<_$react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
104
+ summary?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
105
+ dialog?: _$react.FC<_$react.DetailedHTMLProps<_$react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
106
+ br?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
107
+ hr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
108
+ wbr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
109
+ ruby?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
110
+ rt?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
111
+ rp?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
112
+ bdi?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
113
+ bdo?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
114
+ data?: _$react.FC<_$react.DetailedHTMLProps<_$react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>;
115
+ template?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>>;
116
+ slot?: _$react.FC<_$react.DetailedHTMLProps<_$react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>>;
117
117
  } & {
118
- [key: string]: react.FC<any>;
118
+ [key: string]: _$react.FC<any>;
119
119
  };
120
- wrapper?: react.FC<react.HTMLAttributes<HTMLElement>>;
120
+ wrapper?: _$react.FC<_$react.HTMLAttributes<HTMLElement>>;
121
121
  renderMarkdown?: (markdown: string, options?: index_d_exports.MarkdownProviderOptions, components?: {} & {
122
- object?: react.FC<react.DetailedHTMLProps<react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
123
- html?: react.FC<react.DetailedHTMLProps<react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>;
124
- head?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
125
- body?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>;
126
- main?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
127
- header?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
128
- footer?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
129
- nav?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
130
- aside?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
131
- article?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
132
- section?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
133
- div?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
134
- span?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
135
- h1?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
136
- h2?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
137
- h3?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
138
- h4?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
139
- h5?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
140
- h6?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
141
- p?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
142
- a?: react.FC<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
143
- strong?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
144
- b?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
145
- em?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
146
- i?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
147
- u?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
148
- s?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
149
- del?: react.FC<react.DetailedHTMLProps<react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
150
- ins?: react.FC<react.DetailedHTMLProps<react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
151
- mark?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
152
- small?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
153
- sub?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
154
- sup?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
155
- code?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
156
- pre?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
157
- blockquote?: react.FC<react.DetailedHTMLProps<react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
158
- q?: react.FC<react.DetailedHTMLProps<react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
159
- cite?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
160
- abbr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
161
- address?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
162
- time?: react.FC<react.DetailedHTMLProps<react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
163
- kbd?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
164
- samp?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
165
- var?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
166
- ul?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
167
- ol?: react.FC<react.DetailedHTMLProps<react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
168
- li?: react.FC<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
169
- dl?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
170
- dt?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
171
- dd?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
172
- table?: react.FC<react.DetailedHTMLProps<react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
173
- thead?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
174
- tbody?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
175
- tfoot?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
176
- tr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
177
- th?: react.FC<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
178
- td?: react.FC<react.DetailedHTMLProps<react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
179
- caption?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
180
- colgroup?: react.FC<react.DetailedHTMLProps<react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
181
- col?: react.FC<react.DetailedHTMLProps<react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
182
- form?: react.FC<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
183
- input?: react.FC<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
184
- textarea?: react.FC<react.DetailedHTMLProps<react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
185
- button?: react.FC<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
186
- select?: react.FC<react.DetailedHTMLProps<react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
187
- option?: react.FC<react.DetailedHTMLProps<react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
188
- optgroup?: react.FC<react.DetailedHTMLProps<react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
189
- label?: react.FC<react.DetailedHTMLProps<react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
190
- fieldset?: react.FC<react.DetailedHTMLProps<react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
191
- legend?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
192
- datalist?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>;
193
- output?: react.FC<react.DetailedHTMLProps<react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
194
- progress?: react.FC<react.DetailedHTMLProps<react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
195
- meter?: react.FC<react.DetailedHTMLProps<react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
196
- img?: react.FC<react.DetailedHTMLProps<react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
197
- video?: react.FC<react.DetailedHTMLProps<react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
198
- audio?: react.FC<react.DetailedHTMLProps<react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
199
- source?: react.FC<react.DetailedHTMLProps<react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>;
200
- track?: react.FC<react.DetailedHTMLProps<react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>;
201
- picture?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
202
- figure?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
203
- figcaption?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
204
- iframe?: react.FC<react.DetailedHTMLProps<react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
205
- embed?: react.FC<react.DetailedHTMLProps<react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
206
- canvas?: react.FC<react.DetailedHTMLProps<react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>;
207
- svg?: react.FC<react.SVGProps<SVGSVGElement>>;
208
- details?: react.FC<react.DetailedHTMLProps<react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
209
- summary?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
210
- dialog?: react.FC<react.DetailedHTMLProps<react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
211
- br?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
212
- hr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
213
- wbr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
214
- ruby?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
215
- rt?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
216
- rp?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
217
- bdi?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
218
- bdo?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
219
- data?: react.FC<react.DetailedHTMLProps<react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>;
220
- template?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>>;
221
- slot?: react.FC<react.DetailedHTMLProps<react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>>;
122
+ object?: _$react.FC<_$react.DetailedHTMLProps<_$react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
123
+ html?: _$react.FC<_$react.DetailedHTMLProps<_$react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>;
124
+ head?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
125
+ body?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>;
126
+ main?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
127
+ header?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
128
+ footer?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
129
+ nav?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
130
+ aside?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
131
+ article?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
132
+ section?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
133
+ div?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
134
+ span?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
135
+ h1?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
136
+ h2?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
137
+ h3?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
138
+ h4?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
139
+ h5?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
140
+ h6?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
141
+ p?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
142
+ a?: _$react.FC<_$react.DetailedHTMLProps<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
143
+ strong?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
144
+ b?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
145
+ em?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
146
+ i?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
147
+ u?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
148
+ s?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
149
+ del?: _$react.FC<_$react.DetailedHTMLProps<_$react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
150
+ ins?: _$react.FC<_$react.DetailedHTMLProps<_$react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
151
+ mark?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
152
+ small?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
153
+ sub?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
154
+ sup?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
155
+ code?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
156
+ pre?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
157
+ blockquote?: _$react.FC<_$react.DetailedHTMLProps<_$react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
158
+ q?: _$react.FC<_$react.DetailedHTMLProps<_$react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
159
+ cite?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
160
+ abbr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
161
+ address?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
162
+ time?: _$react.FC<_$react.DetailedHTMLProps<_$react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
163
+ kbd?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
164
+ samp?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
165
+ var?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
166
+ ul?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
167
+ ol?: _$react.FC<_$react.DetailedHTMLProps<_$react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
168
+ li?: _$react.FC<_$react.DetailedHTMLProps<_$react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
169
+ dl?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
170
+ dt?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
171
+ dd?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
172
+ table?: _$react.FC<_$react.DetailedHTMLProps<_$react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
173
+ thead?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
174
+ tbody?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
175
+ tfoot?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
176
+ tr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
177
+ th?: _$react.FC<_$react.DetailedHTMLProps<_$react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
178
+ td?: _$react.FC<_$react.DetailedHTMLProps<_$react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
179
+ caption?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
180
+ colgroup?: _$react.FC<_$react.DetailedHTMLProps<_$react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
181
+ col?: _$react.FC<_$react.DetailedHTMLProps<_$react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
182
+ form?: _$react.FC<_$react.DetailedHTMLProps<_$react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
183
+ input?: _$react.FC<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
184
+ textarea?: _$react.FC<_$react.DetailedHTMLProps<_$react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
185
+ button?: _$react.FC<_$react.DetailedHTMLProps<_$react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
186
+ select?: _$react.FC<_$react.DetailedHTMLProps<_$react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
187
+ option?: _$react.FC<_$react.DetailedHTMLProps<_$react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
188
+ optgroup?: _$react.FC<_$react.DetailedHTMLProps<_$react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
189
+ label?: _$react.FC<_$react.DetailedHTMLProps<_$react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
190
+ fieldset?: _$react.FC<_$react.DetailedHTMLProps<_$react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
191
+ legend?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
192
+ datalist?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>;
193
+ output?: _$react.FC<_$react.DetailedHTMLProps<_$react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
194
+ progress?: _$react.FC<_$react.DetailedHTMLProps<_$react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
195
+ meter?: _$react.FC<_$react.DetailedHTMLProps<_$react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
196
+ img?: _$react.FC<_$react.DetailedHTMLProps<_$react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
197
+ video?: _$react.FC<_$react.DetailedHTMLProps<_$react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
198
+ audio?: _$react.FC<_$react.DetailedHTMLProps<_$react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
199
+ source?: _$react.FC<_$react.DetailedHTMLProps<_$react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>;
200
+ track?: _$react.FC<_$react.DetailedHTMLProps<_$react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>;
201
+ picture?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
202
+ figure?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
203
+ figcaption?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
204
+ iframe?: _$react.FC<_$react.DetailedHTMLProps<_$react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
205
+ embed?: _$react.FC<_$react.DetailedHTMLProps<_$react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
206
+ canvas?: _$react.FC<_$react.DetailedHTMLProps<_$react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>;
207
+ svg?: _$react.FC<_$react.SVGProps<SVGSVGElement>>;
208
+ details?: _$react.FC<_$react.DetailedHTMLProps<_$react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
209
+ summary?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
210
+ dialog?: _$react.FC<_$react.DetailedHTMLProps<_$react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
211
+ br?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
212
+ hr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
213
+ wbr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
214
+ ruby?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
215
+ rt?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
216
+ rp?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
217
+ bdi?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
218
+ bdo?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
219
+ data?: _$react.FC<_$react.DetailedHTMLProps<_$react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>;
220
+ template?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>>;
221
+ slot?: _$react.FC<_$react.DetailedHTMLProps<_$react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>>;
222
222
  } & {
223
- [key: string]: react.FC<any>;
224
- }, wrapper?: react.FC<react.HTMLAttributes<HTMLElement>>) => react.ReactNode | Promise<react.ReactNode>;
223
+ [key: string]: _$react.FC<any>;
224
+ }, wrapper?: _$react.FC<_$react.HTMLAttributes<HTMLElement>>) => _$react.ReactNode | Promise<_$react.ReactNode>;
225
225
  } & {
226
- children?: react.ReactNode | undefined;
226
+ children?: _$react.ReactNode | undefined;
227
227
  }>;
228
228
  /**
229
229
  * @deprecated import from next-intlayer/markdown instead
230
230
  */
231
231
  declare const useMarkdownContext: () => {
232
232
  components?: {} & {
233
- object?: react.FC<react.DetailedHTMLProps<react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
234
- html?: react.FC<react.DetailedHTMLProps<react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>;
235
- head?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
236
- body?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>;
237
- main?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
238
- header?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
239
- footer?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
240
- nav?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
241
- aside?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
242
- article?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
243
- section?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
244
- div?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
245
- span?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
246
- h1?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
247
- h2?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
248
- h3?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
249
- h4?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
250
- h5?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
251
- h6?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
252
- p?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
253
- a?: react.FC<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
254
- strong?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
255
- b?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
256
- em?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
257
- i?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
258
- u?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
259
- s?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
260
- del?: react.FC<react.DetailedHTMLProps<react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
261
- ins?: react.FC<react.DetailedHTMLProps<react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
262
- mark?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
263
- small?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
264
- sub?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
265
- sup?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
266
- code?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
267
- pre?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
268
- blockquote?: react.FC<react.DetailedHTMLProps<react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
269
- q?: react.FC<react.DetailedHTMLProps<react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
270
- cite?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
271
- abbr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
272
- address?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
273
- time?: react.FC<react.DetailedHTMLProps<react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
274
- kbd?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
275
- samp?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
276
- var?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
277
- ul?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
278
- ol?: react.FC<react.DetailedHTMLProps<react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
279
- li?: react.FC<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
280
- dl?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
281
- dt?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
282
- dd?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
283
- table?: react.FC<react.DetailedHTMLProps<react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
284
- thead?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
285
- tbody?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
286
- tfoot?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
287
- tr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
288
- th?: react.FC<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
289
- td?: react.FC<react.DetailedHTMLProps<react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
290
- caption?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
291
- colgroup?: react.FC<react.DetailedHTMLProps<react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
292
- col?: react.FC<react.DetailedHTMLProps<react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
293
- form?: react.FC<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
294
- input?: react.FC<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
295
- textarea?: react.FC<react.DetailedHTMLProps<react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
296
- button?: react.FC<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
297
- select?: react.FC<react.DetailedHTMLProps<react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
298
- option?: react.FC<react.DetailedHTMLProps<react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
299
- optgroup?: react.FC<react.DetailedHTMLProps<react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
300
- label?: react.FC<react.DetailedHTMLProps<react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
301
- fieldset?: react.FC<react.DetailedHTMLProps<react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
302
- legend?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
303
- datalist?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>;
304
- output?: react.FC<react.DetailedHTMLProps<react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
305
- progress?: react.FC<react.DetailedHTMLProps<react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
306
- meter?: react.FC<react.DetailedHTMLProps<react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
307
- img?: react.FC<react.DetailedHTMLProps<react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
308
- video?: react.FC<react.DetailedHTMLProps<react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
309
- audio?: react.FC<react.DetailedHTMLProps<react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
310
- source?: react.FC<react.DetailedHTMLProps<react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>;
311
- track?: react.FC<react.DetailedHTMLProps<react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>;
312
- picture?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
313
- figure?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
314
- figcaption?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
315
- iframe?: react.FC<react.DetailedHTMLProps<react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
316
- embed?: react.FC<react.DetailedHTMLProps<react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
317
- canvas?: react.FC<react.DetailedHTMLProps<react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>;
318
- svg?: react.FC<react.SVGProps<SVGSVGElement>>;
319
- details?: react.FC<react.DetailedHTMLProps<react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
320
- summary?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
321
- dialog?: react.FC<react.DetailedHTMLProps<react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
322
- br?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
323
- hr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
324
- wbr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
325
- ruby?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
326
- rt?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
327
- rp?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
328
- bdi?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
329
- bdo?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
330
- data?: react.FC<react.DetailedHTMLProps<react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>;
331
- template?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>>;
332
- slot?: react.FC<react.DetailedHTMLProps<react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>>;
233
+ object?: _$react.FC<_$react.DetailedHTMLProps<_$react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
234
+ html?: _$react.FC<_$react.DetailedHTMLProps<_$react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>;
235
+ head?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
236
+ body?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>;
237
+ main?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
238
+ header?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
239
+ footer?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
240
+ nav?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
241
+ aside?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
242
+ article?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
243
+ section?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
244
+ div?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
245
+ span?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
246
+ h1?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
247
+ h2?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
248
+ h3?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
249
+ h4?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
250
+ h5?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
251
+ h6?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
252
+ p?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
253
+ a?: _$react.FC<_$react.DetailedHTMLProps<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
254
+ strong?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
255
+ b?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
256
+ em?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
257
+ i?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
258
+ u?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
259
+ s?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
260
+ del?: _$react.FC<_$react.DetailedHTMLProps<_$react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
261
+ ins?: _$react.FC<_$react.DetailedHTMLProps<_$react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
262
+ mark?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
263
+ small?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
264
+ sub?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
265
+ sup?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
266
+ code?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
267
+ pre?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
268
+ blockquote?: _$react.FC<_$react.DetailedHTMLProps<_$react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
269
+ q?: _$react.FC<_$react.DetailedHTMLProps<_$react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
270
+ cite?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
271
+ abbr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
272
+ address?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
273
+ time?: _$react.FC<_$react.DetailedHTMLProps<_$react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
274
+ kbd?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
275
+ samp?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
276
+ var?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
277
+ ul?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
278
+ ol?: _$react.FC<_$react.DetailedHTMLProps<_$react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
279
+ li?: _$react.FC<_$react.DetailedHTMLProps<_$react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
280
+ dl?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
281
+ dt?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
282
+ dd?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
283
+ table?: _$react.FC<_$react.DetailedHTMLProps<_$react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
284
+ thead?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
285
+ tbody?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
286
+ tfoot?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
287
+ tr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
288
+ th?: _$react.FC<_$react.DetailedHTMLProps<_$react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
289
+ td?: _$react.FC<_$react.DetailedHTMLProps<_$react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
290
+ caption?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
291
+ colgroup?: _$react.FC<_$react.DetailedHTMLProps<_$react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
292
+ col?: _$react.FC<_$react.DetailedHTMLProps<_$react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
293
+ form?: _$react.FC<_$react.DetailedHTMLProps<_$react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
294
+ input?: _$react.FC<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
295
+ textarea?: _$react.FC<_$react.DetailedHTMLProps<_$react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
296
+ button?: _$react.FC<_$react.DetailedHTMLProps<_$react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
297
+ select?: _$react.FC<_$react.DetailedHTMLProps<_$react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
298
+ option?: _$react.FC<_$react.DetailedHTMLProps<_$react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
299
+ optgroup?: _$react.FC<_$react.DetailedHTMLProps<_$react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
300
+ label?: _$react.FC<_$react.DetailedHTMLProps<_$react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
301
+ fieldset?: _$react.FC<_$react.DetailedHTMLProps<_$react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
302
+ legend?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
303
+ datalist?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>;
304
+ output?: _$react.FC<_$react.DetailedHTMLProps<_$react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
305
+ progress?: _$react.FC<_$react.DetailedHTMLProps<_$react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
306
+ meter?: _$react.FC<_$react.DetailedHTMLProps<_$react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
307
+ img?: _$react.FC<_$react.DetailedHTMLProps<_$react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
308
+ video?: _$react.FC<_$react.DetailedHTMLProps<_$react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
309
+ audio?: _$react.FC<_$react.DetailedHTMLProps<_$react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
310
+ source?: _$react.FC<_$react.DetailedHTMLProps<_$react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>;
311
+ track?: _$react.FC<_$react.DetailedHTMLProps<_$react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>;
312
+ picture?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
313
+ figure?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
314
+ figcaption?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
315
+ iframe?: _$react.FC<_$react.DetailedHTMLProps<_$react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
316
+ embed?: _$react.FC<_$react.DetailedHTMLProps<_$react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
317
+ canvas?: _$react.FC<_$react.DetailedHTMLProps<_$react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>;
318
+ svg?: _$react.FC<_$react.SVGProps<SVGSVGElement>>;
319
+ details?: _$react.FC<_$react.DetailedHTMLProps<_$react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
320
+ summary?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
321
+ dialog?: _$react.FC<_$react.DetailedHTMLProps<_$react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
322
+ br?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
323
+ hr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
324
+ wbr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
325
+ ruby?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
326
+ rt?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
327
+ rp?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
328
+ bdi?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
329
+ bdo?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
330
+ data?: _$react.FC<_$react.DetailedHTMLProps<_$react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>;
331
+ template?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>>;
332
+ slot?: _$react.FC<_$react.DetailedHTMLProps<_$react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>>;
333
333
  } & {
334
- [key: string]: react.FC<any>;
334
+ [key: string]: _$react.FC<any>;
335
335
  };
336
336
  renderMarkdown: (markdown: string, options?: index_d_exports.MarkdownProviderOptions, components?: {} & {
337
- object?: react.FC<react.DetailedHTMLProps<react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
338
- html?: react.FC<react.DetailedHTMLProps<react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>;
339
- head?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
340
- body?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>;
341
- main?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
342
- header?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
343
- footer?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
344
- nav?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
345
- aside?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
346
- article?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
347
- section?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
348
- div?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
349
- span?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
350
- h1?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
351
- h2?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
352
- h3?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
353
- h4?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
354
- h5?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
355
- h6?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
356
- p?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
357
- a?: react.FC<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
358
- strong?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
359
- b?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
360
- em?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
361
- i?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
362
- u?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
363
- s?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
364
- del?: react.FC<react.DetailedHTMLProps<react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
365
- ins?: react.FC<react.DetailedHTMLProps<react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
366
- mark?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
367
- small?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
368
- sub?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
369
- sup?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
370
- code?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
371
- pre?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
372
- blockquote?: react.FC<react.DetailedHTMLProps<react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
373
- q?: react.FC<react.DetailedHTMLProps<react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
374
- cite?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
375
- abbr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
376
- address?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
377
- time?: react.FC<react.DetailedHTMLProps<react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
378
- kbd?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
379
- samp?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
380
- var?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
381
- ul?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
382
- ol?: react.FC<react.DetailedHTMLProps<react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
383
- li?: react.FC<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
384
- dl?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
385
- dt?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
386
- dd?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
387
- table?: react.FC<react.DetailedHTMLProps<react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
388
- thead?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
389
- tbody?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
390
- tfoot?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
391
- tr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
392
- th?: react.FC<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
393
- td?: react.FC<react.DetailedHTMLProps<react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
394
- caption?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
395
- colgroup?: react.FC<react.DetailedHTMLProps<react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
396
- col?: react.FC<react.DetailedHTMLProps<react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
397
- form?: react.FC<react.DetailedHTMLProps<react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
398
- input?: react.FC<react.DetailedHTMLProps<react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
399
- textarea?: react.FC<react.DetailedHTMLProps<react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
400
- button?: react.FC<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
401
- select?: react.FC<react.DetailedHTMLProps<react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
402
- option?: react.FC<react.DetailedHTMLProps<react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
403
- optgroup?: react.FC<react.DetailedHTMLProps<react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
404
- label?: react.FC<react.DetailedHTMLProps<react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
405
- fieldset?: react.FC<react.DetailedHTMLProps<react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
406
- legend?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
407
- datalist?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>;
408
- output?: react.FC<react.DetailedHTMLProps<react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
409
- progress?: react.FC<react.DetailedHTMLProps<react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
410
- meter?: react.FC<react.DetailedHTMLProps<react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
411
- img?: react.FC<react.DetailedHTMLProps<react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
412
- video?: react.FC<react.DetailedHTMLProps<react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
413
- audio?: react.FC<react.DetailedHTMLProps<react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
414
- source?: react.FC<react.DetailedHTMLProps<react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>;
415
- track?: react.FC<react.DetailedHTMLProps<react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>;
416
- picture?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
417
- figure?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
418
- figcaption?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
419
- iframe?: react.FC<react.DetailedHTMLProps<react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
420
- embed?: react.FC<react.DetailedHTMLProps<react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
421
- canvas?: react.FC<react.DetailedHTMLProps<react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>;
422
- svg?: react.FC<react.SVGProps<SVGSVGElement>>;
423
- details?: react.FC<react.DetailedHTMLProps<react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
424
- summary?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
425
- dialog?: react.FC<react.DetailedHTMLProps<react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
426
- br?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
427
- hr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
428
- wbr?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
429
- ruby?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
430
- rt?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
431
- rp?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
432
- bdi?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
433
- bdo?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>>;
434
- data?: react.FC<react.DetailedHTMLProps<react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>;
435
- template?: react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>>;
436
- slot?: react.FC<react.DetailedHTMLProps<react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>>;
337
+ object?: _$react.FC<_$react.DetailedHTMLProps<_$react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
338
+ html?: _$react.FC<_$react.DetailedHTMLProps<_$react.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>;
339
+ head?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
340
+ body?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>;
341
+ main?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
342
+ header?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
343
+ footer?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
344
+ nav?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
345
+ aside?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
346
+ article?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
347
+ section?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
348
+ div?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
349
+ span?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
350
+ h1?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
351
+ h2?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
352
+ h3?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
353
+ h4?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
354
+ h5?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
355
+ h6?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
356
+ p?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
357
+ a?: _$react.FC<_$react.DetailedHTMLProps<_$react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
358
+ strong?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
359
+ b?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
360
+ em?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
361
+ i?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
362
+ u?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
363
+ s?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
364
+ del?: _$react.FC<_$react.DetailedHTMLProps<_$react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
365
+ ins?: _$react.FC<_$react.DetailedHTMLProps<_$react.InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
366
+ mark?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
367
+ small?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
368
+ sub?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
369
+ sup?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
370
+ code?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
371
+ pre?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
372
+ blockquote?: _$react.FC<_$react.DetailedHTMLProps<_$react.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
373
+ q?: _$react.FC<_$react.DetailedHTMLProps<_$react.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
374
+ cite?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
375
+ abbr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
376
+ address?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
377
+ time?: _$react.FC<_$react.DetailedHTMLProps<_$react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
378
+ kbd?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
379
+ samp?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
380
+ var?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
381
+ ul?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
382
+ ol?: _$react.FC<_$react.DetailedHTMLProps<_$react.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
383
+ li?: _$react.FC<_$react.DetailedHTMLProps<_$react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
384
+ dl?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
385
+ dt?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
386
+ dd?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
387
+ table?: _$react.FC<_$react.DetailedHTMLProps<_$react.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
388
+ thead?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
389
+ tbody?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
390
+ tfoot?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
391
+ tr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
392
+ th?: _$react.FC<_$react.DetailedHTMLProps<_$react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
393
+ td?: _$react.FC<_$react.DetailedHTMLProps<_$react.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
394
+ caption?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
395
+ colgroup?: _$react.FC<_$react.DetailedHTMLProps<_$react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
396
+ col?: _$react.FC<_$react.DetailedHTMLProps<_$react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
397
+ form?: _$react.FC<_$react.DetailedHTMLProps<_$react.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
398
+ input?: _$react.FC<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
399
+ textarea?: _$react.FC<_$react.DetailedHTMLProps<_$react.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
400
+ button?: _$react.FC<_$react.DetailedHTMLProps<_$react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
401
+ select?: _$react.FC<_$react.DetailedHTMLProps<_$react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
402
+ option?: _$react.FC<_$react.DetailedHTMLProps<_$react.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
403
+ optgroup?: _$react.FC<_$react.DetailedHTMLProps<_$react.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
404
+ label?: _$react.FC<_$react.DetailedHTMLProps<_$react.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
405
+ fieldset?: _$react.FC<_$react.DetailedHTMLProps<_$react.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
406
+ legend?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
407
+ datalist?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>;
408
+ output?: _$react.FC<_$react.DetailedHTMLProps<_$react.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
409
+ progress?: _$react.FC<_$react.DetailedHTMLProps<_$react.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
410
+ meter?: _$react.FC<_$react.DetailedHTMLProps<_$react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
411
+ img?: _$react.FC<_$react.DetailedHTMLProps<_$react.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
412
+ video?: _$react.FC<_$react.DetailedHTMLProps<_$react.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
413
+ audio?: _$react.FC<_$react.DetailedHTMLProps<_$react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
414
+ source?: _$react.FC<_$react.DetailedHTMLProps<_$react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>;
415
+ track?: _$react.FC<_$react.DetailedHTMLProps<_$react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>;
416
+ picture?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
417
+ figure?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
418
+ figcaption?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
419
+ iframe?: _$react.FC<_$react.DetailedHTMLProps<_$react.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
420
+ embed?: _$react.FC<_$react.DetailedHTMLProps<_$react.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
421
+ canvas?: _$react.FC<_$react.DetailedHTMLProps<_$react.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>;
422
+ svg?: _$react.FC<_$react.SVGProps<SVGSVGElement>>;
423
+ details?: _$react.FC<_$react.DetailedHTMLProps<_$react.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
424
+ summary?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
425
+ dialog?: _$react.FC<_$react.DetailedHTMLProps<_$react.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
426
+ br?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
427
+ hr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
428
+ wbr?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
429
+ ruby?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
430
+ rt?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
431
+ rp?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
432
+ bdi?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
433
+ bdo?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLElement>, HTMLElement>>;
434
+ data?: _$react.FC<_$react.DetailedHTMLProps<_$react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>;
435
+ template?: _$react.FC<_$react.DetailedHTMLProps<_$react.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>>;
436
+ slot?: _$react.FC<_$react.DetailedHTMLProps<_$react.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>>;
437
437
  } & {
438
- [key: string]: react.FC<any>;
439
- }, wrapper?: react.FC<react.HTMLAttributes<HTMLElement>>) => react.ReactNode | Promise<react.ReactNode>;
438
+ [key: string]: _$react.FC<any>;
439
+ }, wrapper?: _$react.FC<_$react.HTMLAttributes<HTMLElement>>) => _$react.ReactNode | Promise<_$react.ReactNode>;
440
440
  };
441
441
  /**
442
442
  * @deprecated import from next-intlayer/markdown instead
@@ -452,7 +452,7 @@ declare const renderMarkdown: (content: string, {
452
452
  forceInline,
453
453
  preserveFrontmatter,
454
454
  tagfilter
455
- }?: index_d_exports.RenderMarkdownProps) => react.JSX.Element;
455
+ }?: index_d_exports.RenderMarkdownProps) => _$react.JSX.Element;
456
456
  /**
457
457
  * @deprecated import from next-intlayer/markdown instead
458
458
  */
@@ -463,11 +463,11 @@ declare const useMarkdownRenderer: ({
463
463
  forceInline,
464
464
  preserveFrontmatter,
465
465
  tagfilter
466
- }?: index_d_exports.RenderMarkdownProps) => (content: string) => string | number | bigint | boolean | Iterable<react.ReactNode> | Promise<react.ReactNode> | react.JSX.Element;
466
+ }?: index_d_exports.RenderMarkdownProps) => (content: string) => string | number | bigint | boolean | Iterable<_$react.ReactNode> | Promise<_$react.ReactNode> | _$react.JSX.Element;
467
467
  /**
468
468
  * @deprecated import from next-intlayer/markdown instead
469
469
  */
470
- declare const MarkdownRenderer: react.FC<index_d_exports.MarkdownRendererProps>;
470
+ declare const MarkdownRenderer: _$react.FC<index_d_exports.MarkdownRendererProps>;
471
471
  /**
472
472
  * @deprecated import from next-intlayer/markdown instead
473
473
  */