@openfin/ui-library 0.28.1 → 0.29.0-alpha.1738160663

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.
Files changed (62) hide show
  1. package/dist/components/controls/CollapsibleCard/collapsibleCard.d.ts +1 -1
  2. package/dist/components/controls/ExpandableButton/expandableButton.d.ts +1 -1
  3. package/dist/components/controls/ExpandableButton/expandablePanel.d.ts +1 -1
  4. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/CustomContextMenuItem.d.ts +1 -1
  5. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/NormalCustomContextMenuItem.d.ts +1 -1
  6. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/RootMenuHeader.d.ts +1 -1
  7. package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/SubmenuHeaderCustomContextMenuItem.d.ts +1 -1
  8. package/dist/components/controls/Menus/CustomContextMenu/useContextMenuKeyboardNavigation.d.ts +1 -1
  9. package/dist/components/controls/Menus/CustomContextMenu/useContextMenuNavigation.d.ts +2 -2
  10. package/dist/components/controls/Menus/common.d.ts +36 -65
  11. package/dist/components/elements/Calendar/calendar.d.ts +1 -1
  12. package/dist/components/elements/Icon/openfin/BellFilledIcon.d.ts +2 -2
  13. package/dist/components/elements/Icon/openfin/BellIcon.d.ts +2 -2
  14. package/dist/components/elements/Icon/openfin/BlockedIcon.d.ts +2 -2
  15. package/dist/components/elements/Icon/openfin/BookmarkFilled.d.ts +2 -2
  16. package/dist/components/elements/Icon/openfin/BookmarkOutlined.d.ts +2 -2
  17. package/dist/components/elements/Icon/openfin/BrokenLinkIcon.d.ts +2 -2
  18. package/dist/components/elements/Icon/openfin/ChevronDownIcon.d.ts +2 -2
  19. package/dist/components/elements/Icon/openfin/ChevronLeftIcon.d.ts +2 -2
  20. package/dist/components/elements/Icon/openfin/ChevronRightIcon.d.ts +2 -2
  21. package/dist/components/elements/Icon/openfin/ChevronUpIcon.d.ts +2 -2
  22. package/dist/components/elements/Icon/openfin/ExclamationCircledFilledIcon.d.ts +2 -2
  23. package/dist/components/elements/Icon/openfin/FallbackGlobeIcon.d.ts +2 -2
  24. package/dist/components/elements/Icon/openfin/FilledCircleIcon.d.ts +2 -2
  25. package/dist/components/elements/Icon/openfin/FilterIcon.d.ts +2 -2
  26. package/dist/components/elements/Icon/openfin/FloppyDiskIcon.d.ts +2 -2
  27. package/dist/components/elements/Icon/openfin/FragmentsIcon.d.ts +2 -2
  28. package/dist/components/elements/Icon/openfin/LightBulbFilledIcon.d.ts +2 -2
  29. package/dist/components/elements/Icon/openfin/LightBulbOutlinedIcon.d.ts +2 -2
  30. package/dist/components/elements/Icon/openfin/LockedClosedFilledIcon.d.ts +2 -2
  31. package/dist/components/elements/Icon/openfin/MinimizeIcon.d.ts +2 -2
  32. package/dist/components/elements/Icon/openfin/OpenFinIcon.d.ts +2 -2
  33. package/dist/components/elements/Icon/openfin/PageIcon.d.ts +2 -2
  34. package/dist/components/elements/Icon/openfin/RedDotIcon.d.ts +2 -2
  35. package/dist/components/elements/Icon/openfin/StackIcon.d.ts +2 -2
  36. package/dist/components/elements/Icon/openfin/StorefrontIcon.d.ts +2 -2
  37. package/dist/components/elements/Icon/openfin/WorkspaceIcon.d.ts +2 -2
  38. package/dist/components/elements/Label/label.d.ts +1 -2
  39. package/dist/components/elements/Loader/loader.d.ts +1 -1
  40. package/dist/components/elements/Loader/openfinLoader.d.ts +1 -1
  41. package/dist/components/input/BaseInput/baseInput.d.ts +10 -8
  42. package/dist/components/input/Checkbox/checkbox.d.ts +7 -7
  43. package/dist/components/input/NumberInput/numberInput.d.ts +0 -1
  44. package/dist/components/input/RadioInput/radioInput.d.ts +3 -3
  45. package/dist/components/input/TextArea/textArea.d.ts +3 -3
  46. package/dist/components/input/TextInput/textInput.d.ts +7 -8
  47. package/dist/components/layout/Box/box.d.ts +1 -15
  48. package/dist/components/layout/HamburgerNavigation/sidebarMenu.d.ts +1 -1
  49. package/dist/components/layout/TabList/tab.d.ts +2 -1
  50. package/dist/components/system/ThemeProvider/lib/iconSet.d.ts +340 -320
  51. package/dist/components/system/ThemeProvider/themeProvider.d.ts +2 -1
  52. package/dist/components/system/ThemeProvider/themeProvider.spec.d.ts +1 -1
  53. package/dist/components/templates/CascadingDropdownMenu/cascadingDropdownMenu.d.ts +1 -2
  54. package/dist/components/templates/ContactCard/PresenceIcons.d.ts +4 -4
  55. package/dist/components/typography/Heading/heading.d.ts +408 -354
  56. package/dist/components/typography/Text/text.d.ts +1 -6
  57. package/dist/hooks/useColorScheme.d.ts +1 -1
  58. package/dist/hooks/useTheme.d.ts +2 -2
  59. package/dist/index.js +164 -164
  60. package/dist/index.js.LICENSE.txt +3 -17
  61. package/dist/storybookHelpers.d.ts +53 -54
  62. package/package.json +20 -20
@@ -41,16 +41,18 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
41
41
  suppressContentEditableWarning?: boolean | undefined;
42
42
  suppressHydrationWarning?: boolean | undefined;
43
43
  accessKey?: string | undefined;
44
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
45
+ autoFocus?: boolean | undefined;
44
46
  className?: string | undefined;
45
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
47
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
46
48
  contextMenu?: string | undefined;
47
49
  dir?: string | undefined;
48
50
  draggable?: (boolean | "true" | "false") | undefined;
51
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
49
52
  hidden?: boolean | undefined;
50
53
  id?: string | undefined;
51
54
  lang?: string | undefined;
52
55
  nonce?: string | undefined;
53
- placeholder?: string | undefined;
54
56
  slot?: string | undefined;
55
57
  spellCheck?: (boolean | "true" | "false") | undefined;
56
58
  style?: import("react").CSSProperties | undefined;
@@ -60,14 +62,16 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
60
62
  radioGroup?: string | undefined;
61
63
  role?: import("react").AriaRole | undefined;
62
64
  about?: string | undefined;
65
+ content?: string | undefined;
63
66
  datatype?: string | undefined;
64
67
  inlist?: any;
65
68
  prefix?: string | undefined;
66
69
  property?: string | undefined;
70
+ rel?: string | undefined;
67
71
  resource?: string | undefined;
72
+ rev?: string | undefined;
68
73
  typeof?: string | undefined;
69
74
  vocab?: string | undefined;
70
- autoCapitalize?: string | undefined;
71
75
  autoCorrect?: string | undefined;
72
76
  autoSave?: string | undefined;
73
77
  color?: "textDefault" | "background6" | undefined;
@@ -79,59 +83,64 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
79
83
  results?: number | undefined;
80
84
  security?: string | undefined;
81
85
  unselectable?: "on" | "off" | undefined;
82
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
86
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
83
87
  is?: string | undefined;
84
- 'aria-activedescendant'?: string | undefined;
85
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
86
- 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
87
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
88
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
89
- 'aria-colcount'?: number | undefined;
90
- 'aria-colindex'?: number | undefined;
91
- 'aria-colspan'?: number | undefined;
92
- 'aria-controls'?: string | undefined;
93
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
94
- 'aria-describedby'?: string | undefined;
95
- 'aria-details'?: string | undefined;
96
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
97
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
98
- 'aria-errormessage'?: string | undefined;
99
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
100
- 'aria-flowto'?: string | undefined;
101
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
102
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
103
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
104
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
105
- 'aria-keyshortcuts'?: string | undefined;
106
- 'aria-label'?: string | undefined;
107
- 'aria-labelledby'?: string | undefined;
108
- 'aria-level'?: number | undefined;
109
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
110
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
111
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
112
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
113
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
114
- 'aria-owns'?: string | undefined;
115
- 'aria-placeholder'?: string | undefined;
116
- 'aria-posinset'?: number | undefined;
117
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
118
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
119
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
120
- 'aria-required'?: (boolean | "true" | "false") | undefined;
121
- 'aria-roledescription'?: string | undefined;
122
- 'aria-rowcount'?: number | undefined;
123
- 'aria-rowindex'?: number | undefined;
124
- 'aria-rowspan'?: number | undefined;
125
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
126
- 'aria-setsize'?: number | undefined;
127
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
128
- 'aria-valuemax'?: number | undefined;
129
- 'aria-valuemin'?: number | undefined;
130
- 'aria-valuenow'?: number | undefined;
131
- 'aria-valuetext'?: string | undefined;
132
- children: import("react").ReactNode;
88
+ "aria-activedescendant"?: string | undefined;
89
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
90
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
91
+ "aria-braillelabel"?: string | undefined;
92
+ "aria-brailleroledescription"?: string | undefined;
93
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
94
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
95
+ "aria-colcount"?: number | undefined;
96
+ "aria-colindex"?: number | undefined;
97
+ "aria-colindextext"?: string | undefined;
98
+ "aria-colspan"?: number | undefined;
99
+ "aria-controls"?: string | undefined;
100
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
101
+ "aria-describedby"?: string | undefined;
102
+ "aria-description"?: string | undefined;
103
+ "aria-details"?: string | undefined;
104
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
105
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
106
+ "aria-errormessage"?: string | undefined;
107
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
108
+ "aria-flowto"?: string | undefined;
109
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
110
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
111
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
112
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
113
+ "aria-keyshortcuts"?: string | undefined;
114
+ "aria-label"?: string | undefined;
115
+ "aria-labelledby"?: string | undefined;
116
+ "aria-level"?: number | undefined;
117
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
118
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
119
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
120
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
121
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
122
+ "aria-owns"?: string | undefined;
123
+ "aria-placeholder"?: string | undefined;
124
+ "aria-posinset"?: number | undefined;
125
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
126
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
127
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
128
+ "aria-required"?: (boolean | "true" | "false") | undefined;
129
+ "aria-roledescription"?: string | undefined;
130
+ "aria-rowcount"?: number | undefined;
131
+ "aria-rowindex"?: number | undefined;
132
+ "aria-rowindextext"?: string | undefined;
133
+ "aria-rowspan"?: number | undefined;
134
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
135
+ "aria-setsize"?: number | undefined;
136
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
137
+ "aria-valuemax"?: number | undefined;
138
+ "aria-valuemin"?: number | undefined;
139
+ "aria-valuenow"?: number | undefined;
140
+ "aria-valuetext"?: string | undefined;
141
+ children: import("react").ReactNode | undefined;
133
142
  dangerouslySetInnerHTML?: {
134
- __html: string;
143
+ __html: string | TrustedHTML;
135
144
  } | undefined;
136
145
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
137
146
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -201,6 +210,8 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
201
210
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
202
211
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
203
212
  onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
213
+ onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
214
+ onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
204
215
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
205
216
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
206
217
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -270,9 +281,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
270
281
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
271
282
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
272
283
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
273
- onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
274
284
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
275
- onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
276
285
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
277
286
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
278
287
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -293,10 +302,10 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
293
302
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
294
303
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
295
304
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
296
- size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
297
- weight?: "normal" | "bold" | undefined;
305
+ size?: import("../../system").FontSizeType;
306
+ weight?: import("../../system").FontWeightType;
298
307
  theme: import("styled-components").DefaultTheme;
299
- }, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
308
+ }, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
300
309
  export declare const H2: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
301
310
  level: 2;
302
311
  defaultChecked?: boolean | undefined;
@@ -304,16 +313,18 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
304
313
  suppressContentEditableWarning?: boolean | undefined;
305
314
  suppressHydrationWarning?: boolean | undefined;
306
315
  accessKey?: string | undefined;
316
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
317
+ autoFocus?: boolean | undefined;
307
318
  className?: string | undefined;
308
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
319
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
309
320
  contextMenu?: string | undefined;
310
321
  dir?: string | undefined;
311
322
  draggable?: (boolean | "true" | "false") | undefined;
323
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
312
324
  hidden?: boolean | undefined;
313
325
  id?: string | undefined;
314
326
  lang?: string | undefined;
315
327
  nonce?: string | undefined;
316
- placeholder?: string | undefined;
317
328
  slot?: string | undefined;
318
329
  spellCheck?: (boolean | "true" | "false") | undefined;
319
330
  style?: import("react").CSSProperties | undefined;
@@ -323,14 +334,16 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
323
334
  radioGroup?: string | undefined;
324
335
  role?: import("react").AriaRole | undefined;
325
336
  about?: string | undefined;
337
+ content?: string | undefined;
326
338
  datatype?: string | undefined;
327
339
  inlist?: any;
328
340
  prefix?: string | undefined;
329
341
  property?: string | undefined;
342
+ rel?: string | undefined;
330
343
  resource?: string | undefined;
344
+ rev?: string | undefined;
331
345
  typeof?: string | undefined;
332
346
  vocab?: string | undefined;
333
- autoCapitalize?: string | undefined;
334
347
  autoCorrect?: string | undefined;
335
348
  autoSave?: string | undefined;
336
349
  color?: "textDefault" | "background6" | undefined;
@@ -342,59 +355,64 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
342
355
  results?: number | undefined;
343
356
  security?: string | undefined;
344
357
  unselectable?: "on" | "off" | undefined;
345
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
358
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
346
359
  is?: string | undefined;
347
- 'aria-activedescendant'?: string | undefined;
348
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
349
- 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
350
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
351
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
352
- 'aria-colcount'?: number | undefined;
353
- 'aria-colindex'?: number | undefined;
354
- 'aria-colspan'?: number | undefined;
355
- 'aria-controls'?: string | undefined;
356
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
357
- 'aria-describedby'?: string | undefined;
358
- 'aria-details'?: string | undefined;
359
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
360
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
361
- 'aria-errormessage'?: string | undefined;
362
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
363
- 'aria-flowto'?: string | undefined;
364
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
365
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
366
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
367
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
368
- 'aria-keyshortcuts'?: string | undefined;
369
- 'aria-label'?: string | undefined;
370
- 'aria-labelledby'?: string | undefined;
371
- 'aria-level'?: number | undefined;
372
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
373
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
374
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
375
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
376
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
377
- 'aria-owns'?: string | undefined;
378
- 'aria-placeholder'?: string | undefined;
379
- 'aria-posinset'?: number | undefined;
380
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
381
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
382
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
383
- 'aria-required'?: (boolean | "true" | "false") | undefined;
384
- 'aria-roledescription'?: string | undefined;
385
- 'aria-rowcount'?: number | undefined;
386
- 'aria-rowindex'?: number | undefined;
387
- 'aria-rowspan'?: number | undefined;
388
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
389
- 'aria-setsize'?: number | undefined;
390
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
391
- 'aria-valuemax'?: number | undefined;
392
- 'aria-valuemin'?: number | undefined;
393
- 'aria-valuenow'?: number | undefined;
394
- 'aria-valuetext'?: string | undefined;
395
- children: import("react").ReactNode;
360
+ "aria-activedescendant"?: string | undefined;
361
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
362
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
363
+ "aria-braillelabel"?: string | undefined;
364
+ "aria-brailleroledescription"?: string | undefined;
365
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
366
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
367
+ "aria-colcount"?: number | undefined;
368
+ "aria-colindex"?: number | undefined;
369
+ "aria-colindextext"?: string | undefined;
370
+ "aria-colspan"?: number | undefined;
371
+ "aria-controls"?: string | undefined;
372
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
373
+ "aria-describedby"?: string | undefined;
374
+ "aria-description"?: string | undefined;
375
+ "aria-details"?: string | undefined;
376
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
377
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
378
+ "aria-errormessage"?: string | undefined;
379
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
380
+ "aria-flowto"?: string | undefined;
381
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
382
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
383
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
384
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
385
+ "aria-keyshortcuts"?: string | undefined;
386
+ "aria-label"?: string | undefined;
387
+ "aria-labelledby"?: string | undefined;
388
+ "aria-level"?: number | undefined;
389
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
390
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
391
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
392
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
393
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
394
+ "aria-owns"?: string | undefined;
395
+ "aria-placeholder"?: string | undefined;
396
+ "aria-posinset"?: number | undefined;
397
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
398
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
399
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
400
+ "aria-required"?: (boolean | "true" | "false") | undefined;
401
+ "aria-roledescription"?: string | undefined;
402
+ "aria-rowcount"?: number | undefined;
403
+ "aria-rowindex"?: number | undefined;
404
+ "aria-rowindextext"?: string | undefined;
405
+ "aria-rowspan"?: number | undefined;
406
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
407
+ "aria-setsize"?: number | undefined;
408
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
409
+ "aria-valuemax"?: number | undefined;
410
+ "aria-valuemin"?: number | undefined;
411
+ "aria-valuenow"?: number | undefined;
412
+ "aria-valuetext"?: string | undefined;
413
+ children: import("react").ReactNode | undefined;
396
414
  dangerouslySetInnerHTML?: {
397
- __html: string;
415
+ __html: string | TrustedHTML;
398
416
  } | undefined;
399
417
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
400
418
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -464,6 +482,8 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
464
482
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
465
483
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
466
484
  onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
485
+ onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
486
+ onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
467
487
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
468
488
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
469
489
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -533,9 +553,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
533
553
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
534
554
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
535
555
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
536
- onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
537
556
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
538
- onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
539
557
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
540
558
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
541
559
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -556,10 +574,10 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
556
574
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
557
575
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
558
576
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
559
- size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
560
- weight?: "normal" | "bold" | undefined;
577
+ size?: import("../../system").FontSizeType;
578
+ weight?: import("../../system").FontWeightType;
561
579
  theme: import("styled-components").DefaultTheme;
562
- }, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
580
+ }, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
563
581
  export declare const H3: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
564
582
  level: 3;
565
583
  defaultChecked?: boolean | undefined;
@@ -567,16 +585,18 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
567
585
  suppressContentEditableWarning?: boolean | undefined;
568
586
  suppressHydrationWarning?: boolean | undefined;
569
587
  accessKey?: string | undefined;
588
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
589
+ autoFocus?: boolean | undefined;
570
590
  className?: string | undefined;
571
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
591
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
572
592
  contextMenu?: string | undefined;
573
593
  dir?: string | undefined;
574
594
  draggable?: (boolean | "true" | "false") | undefined;
595
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
575
596
  hidden?: boolean | undefined;
576
597
  id?: string | undefined;
577
598
  lang?: string | undefined;
578
599
  nonce?: string | undefined;
579
- placeholder?: string | undefined;
580
600
  slot?: string | undefined;
581
601
  spellCheck?: (boolean | "true" | "false") | undefined;
582
602
  style?: import("react").CSSProperties | undefined;
@@ -586,14 +606,16 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
586
606
  radioGroup?: string | undefined;
587
607
  role?: import("react").AriaRole | undefined;
588
608
  about?: string | undefined;
609
+ content?: string | undefined;
589
610
  datatype?: string | undefined;
590
611
  inlist?: any;
591
612
  prefix?: string | undefined;
592
613
  property?: string | undefined;
614
+ rel?: string | undefined;
593
615
  resource?: string | undefined;
616
+ rev?: string | undefined;
594
617
  typeof?: string | undefined;
595
618
  vocab?: string | undefined;
596
- autoCapitalize?: string | undefined;
597
619
  autoCorrect?: string | undefined;
598
620
  autoSave?: string | undefined;
599
621
  color?: "textDefault" | "background6" | undefined;
@@ -605,59 +627,64 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
605
627
  results?: number | undefined;
606
628
  security?: string | undefined;
607
629
  unselectable?: "on" | "off" | undefined;
608
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
630
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
609
631
  is?: string | undefined;
610
- 'aria-activedescendant'?: string | undefined;
611
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
612
- 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
613
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
614
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
615
- 'aria-colcount'?: number | undefined;
616
- 'aria-colindex'?: number | undefined;
617
- 'aria-colspan'?: number | undefined;
618
- 'aria-controls'?: string | undefined;
619
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
620
- 'aria-describedby'?: string | undefined;
621
- 'aria-details'?: string | undefined;
622
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
623
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
624
- 'aria-errormessage'?: string | undefined;
625
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
626
- 'aria-flowto'?: string | undefined;
627
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
628
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
629
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
630
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
631
- 'aria-keyshortcuts'?: string | undefined;
632
- 'aria-label'?: string | undefined;
633
- 'aria-labelledby'?: string | undefined;
634
- 'aria-level'?: number | undefined;
635
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
636
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
637
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
638
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
639
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
640
- 'aria-owns'?: string | undefined;
641
- 'aria-placeholder'?: string | undefined;
642
- 'aria-posinset'?: number | undefined;
643
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
644
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
645
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
646
- 'aria-required'?: (boolean | "true" | "false") | undefined;
647
- 'aria-roledescription'?: string | undefined;
648
- 'aria-rowcount'?: number | undefined;
649
- 'aria-rowindex'?: number | undefined;
650
- 'aria-rowspan'?: number | undefined;
651
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
652
- 'aria-setsize'?: number | undefined;
653
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
654
- 'aria-valuemax'?: number | undefined;
655
- 'aria-valuemin'?: number | undefined;
656
- 'aria-valuenow'?: number | undefined;
657
- 'aria-valuetext'?: string | undefined;
658
- children: import("react").ReactNode;
632
+ "aria-activedescendant"?: string | undefined;
633
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
634
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
635
+ "aria-braillelabel"?: string | undefined;
636
+ "aria-brailleroledescription"?: string | undefined;
637
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
638
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
639
+ "aria-colcount"?: number | undefined;
640
+ "aria-colindex"?: number | undefined;
641
+ "aria-colindextext"?: string | undefined;
642
+ "aria-colspan"?: number | undefined;
643
+ "aria-controls"?: string | undefined;
644
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
645
+ "aria-describedby"?: string | undefined;
646
+ "aria-description"?: string | undefined;
647
+ "aria-details"?: string | undefined;
648
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
649
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
650
+ "aria-errormessage"?: string | undefined;
651
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
652
+ "aria-flowto"?: string | undefined;
653
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
654
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
655
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
656
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
657
+ "aria-keyshortcuts"?: string | undefined;
658
+ "aria-label"?: string | undefined;
659
+ "aria-labelledby"?: string | undefined;
660
+ "aria-level"?: number | undefined;
661
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
662
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
663
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
664
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
665
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
666
+ "aria-owns"?: string | undefined;
667
+ "aria-placeholder"?: string | undefined;
668
+ "aria-posinset"?: number | undefined;
669
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
670
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
671
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
672
+ "aria-required"?: (boolean | "true" | "false") | undefined;
673
+ "aria-roledescription"?: string | undefined;
674
+ "aria-rowcount"?: number | undefined;
675
+ "aria-rowindex"?: number | undefined;
676
+ "aria-rowindextext"?: string | undefined;
677
+ "aria-rowspan"?: number | undefined;
678
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
679
+ "aria-setsize"?: number | undefined;
680
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
681
+ "aria-valuemax"?: number | undefined;
682
+ "aria-valuemin"?: number | undefined;
683
+ "aria-valuenow"?: number | undefined;
684
+ "aria-valuetext"?: string | undefined;
685
+ children: import("react").ReactNode | undefined;
659
686
  dangerouslySetInnerHTML?: {
660
- __html: string;
687
+ __html: string | TrustedHTML;
661
688
  } | undefined;
662
689
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
663
690
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -727,6 +754,8 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
727
754
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
728
755
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
729
756
  onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
757
+ onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
758
+ onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
730
759
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
731
760
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
732
761
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -796,9 +825,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
796
825
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
797
826
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
798
827
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
799
- onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
800
828
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
801
- onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
802
829
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
803
830
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
804
831
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -819,10 +846,10 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
819
846
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
820
847
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
821
848
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
822
- size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
823
- weight?: "normal" | "bold" | undefined;
849
+ size?: import("../../system").FontSizeType;
850
+ weight?: import("../../system").FontWeightType;
824
851
  theme: import("styled-components").DefaultTheme;
825
- }, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
852
+ }, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
826
853
  export declare const H4: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
827
854
  level: 4;
828
855
  defaultChecked?: boolean | undefined;
@@ -830,16 +857,18 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
830
857
  suppressContentEditableWarning?: boolean | undefined;
831
858
  suppressHydrationWarning?: boolean | undefined;
832
859
  accessKey?: string | undefined;
860
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
861
+ autoFocus?: boolean | undefined;
833
862
  className?: string | undefined;
834
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
863
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
835
864
  contextMenu?: string | undefined;
836
865
  dir?: string | undefined;
837
866
  draggable?: (boolean | "true" | "false") | undefined;
867
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
838
868
  hidden?: boolean | undefined;
839
869
  id?: string | undefined;
840
870
  lang?: string | undefined;
841
871
  nonce?: string | undefined;
842
- placeholder?: string | undefined;
843
872
  slot?: string | undefined;
844
873
  spellCheck?: (boolean | "true" | "false") | undefined;
845
874
  style?: import("react").CSSProperties | undefined;
@@ -849,14 +878,16 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
849
878
  radioGroup?: string | undefined;
850
879
  role?: import("react").AriaRole | undefined;
851
880
  about?: string | undefined;
881
+ content?: string | undefined;
852
882
  datatype?: string | undefined;
853
883
  inlist?: any;
854
884
  prefix?: string | undefined;
855
885
  property?: string | undefined;
886
+ rel?: string | undefined;
856
887
  resource?: string | undefined;
888
+ rev?: string | undefined;
857
889
  typeof?: string | undefined;
858
890
  vocab?: string | undefined;
859
- autoCapitalize?: string | undefined;
860
891
  autoCorrect?: string | undefined;
861
892
  autoSave?: string | undefined;
862
893
  color?: "textDefault" | "background6" | undefined;
@@ -868,59 +899,64 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
868
899
  results?: number | undefined;
869
900
  security?: string | undefined;
870
901
  unselectable?: "on" | "off" | undefined;
871
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
902
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
872
903
  is?: string | undefined;
873
- 'aria-activedescendant'?: string | undefined;
874
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
875
- 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
876
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
877
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
878
- 'aria-colcount'?: number | undefined;
879
- 'aria-colindex'?: number | undefined;
880
- 'aria-colspan'?: number | undefined;
881
- 'aria-controls'?: string | undefined;
882
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
883
- 'aria-describedby'?: string | undefined;
884
- 'aria-details'?: string | undefined;
885
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
886
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
887
- 'aria-errormessage'?: string | undefined;
888
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
889
- 'aria-flowto'?: string | undefined;
890
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
891
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
892
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
893
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
894
- 'aria-keyshortcuts'?: string | undefined;
895
- 'aria-label'?: string | undefined;
896
- 'aria-labelledby'?: string | undefined;
897
- 'aria-level'?: number | undefined;
898
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
899
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
900
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
901
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
902
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
903
- 'aria-owns'?: string | undefined;
904
- 'aria-placeholder'?: string | undefined;
905
- 'aria-posinset'?: number | undefined;
906
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
907
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
908
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
909
- 'aria-required'?: (boolean | "true" | "false") | undefined;
910
- 'aria-roledescription'?: string | undefined;
911
- 'aria-rowcount'?: number | undefined;
912
- 'aria-rowindex'?: number | undefined;
913
- 'aria-rowspan'?: number | undefined;
914
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
915
- 'aria-setsize'?: number | undefined;
916
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
917
- 'aria-valuemax'?: number | undefined;
918
- 'aria-valuemin'?: number | undefined;
919
- 'aria-valuenow'?: number | undefined;
920
- 'aria-valuetext'?: string | undefined;
921
- children: import("react").ReactNode;
904
+ "aria-activedescendant"?: string | undefined;
905
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
906
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
907
+ "aria-braillelabel"?: string | undefined;
908
+ "aria-brailleroledescription"?: string | undefined;
909
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
910
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
911
+ "aria-colcount"?: number | undefined;
912
+ "aria-colindex"?: number | undefined;
913
+ "aria-colindextext"?: string | undefined;
914
+ "aria-colspan"?: number | undefined;
915
+ "aria-controls"?: string | undefined;
916
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
917
+ "aria-describedby"?: string | undefined;
918
+ "aria-description"?: string | undefined;
919
+ "aria-details"?: string | undefined;
920
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
921
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
922
+ "aria-errormessage"?: string | undefined;
923
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
924
+ "aria-flowto"?: string | undefined;
925
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
926
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
927
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
928
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
929
+ "aria-keyshortcuts"?: string | undefined;
930
+ "aria-label"?: string | undefined;
931
+ "aria-labelledby"?: string | undefined;
932
+ "aria-level"?: number | undefined;
933
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
934
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
935
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
936
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
937
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
938
+ "aria-owns"?: string | undefined;
939
+ "aria-placeholder"?: string | undefined;
940
+ "aria-posinset"?: number | undefined;
941
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
942
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
943
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
944
+ "aria-required"?: (boolean | "true" | "false") | undefined;
945
+ "aria-roledescription"?: string | undefined;
946
+ "aria-rowcount"?: number | undefined;
947
+ "aria-rowindex"?: number | undefined;
948
+ "aria-rowindextext"?: string | undefined;
949
+ "aria-rowspan"?: number | undefined;
950
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
951
+ "aria-setsize"?: number | undefined;
952
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
953
+ "aria-valuemax"?: number | undefined;
954
+ "aria-valuemin"?: number | undefined;
955
+ "aria-valuenow"?: number | undefined;
956
+ "aria-valuetext"?: string | undefined;
957
+ children: import("react").ReactNode | undefined;
922
958
  dangerouslySetInnerHTML?: {
923
- __html: string;
959
+ __html: string | TrustedHTML;
924
960
  } | undefined;
925
961
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
926
962
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -990,6 +1026,8 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
990
1026
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
991
1027
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
992
1028
  onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1029
+ onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1030
+ onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
993
1031
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
994
1032
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
995
1033
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -1059,9 +1097,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
1059
1097
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1060
1098
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1061
1099
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1062
- onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1063
1100
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1064
- onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1065
1101
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1066
1102
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1067
1103
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -1082,10 +1118,10 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
1082
1118
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
1083
1119
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1084
1120
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1085
- size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1086
- weight?: "normal" | "bold" | undefined;
1121
+ size?: import("../../system").FontSizeType;
1122
+ weight?: import("../../system").FontWeightType;
1087
1123
  theme: import("styled-components").DefaultTheme;
1088
- }, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
1124
+ }, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
1089
1125
  export declare const H5: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
1090
1126
  level: 5;
1091
1127
  defaultChecked?: boolean | undefined;
@@ -1093,16 +1129,18 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1093
1129
  suppressContentEditableWarning?: boolean | undefined;
1094
1130
  suppressHydrationWarning?: boolean | undefined;
1095
1131
  accessKey?: string | undefined;
1132
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
1133
+ autoFocus?: boolean | undefined;
1096
1134
  className?: string | undefined;
1097
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
1135
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
1098
1136
  contextMenu?: string | undefined;
1099
1137
  dir?: string | undefined;
1100
1138
  draggable?: (boolean | "true" | "false") | undefined;
1139
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
1101
1140
  hidden?: boolean | undefined;
1102
1141
  id?: string | undefined;
1103
1142
  lang?: string | undefined;
1104
1143
  nonce?: string | undefined;
1105
- placeholder?: string | undefined;
1106
1144
  slot?: string | undefined;
1107
1145
  spellCheck?: (boolean | "true" | "false") | undefined;
1108
1146
  style?: import("react").CSSProperties | undefined;
@@ -1112,14 +1150,16 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1112
1150
  radioGroup?: string | undefined;
1113
1151
  role?: import("react").AriaRole | undefined;
1114
1152
  about?: string | undefined;
1153
+ content?: string | undefined;
1115
1154
  datatype?: string | undefined;
1116
1155
  inlist?: any;
1117
1156
  prefix?: string | undefined;
1118
1157
  property?: string | undefined;
1158
+ rel?: string | undefined;
1119
1159
  resource?: string | undefined;
1160
+ rev?: string | undefined;
1120
1161
  typeof?: string | undefined;
1121
1162
  vocab?: string | undefined;
1122
- autoCapitalize?: string | undefined;
1123
1163
  autoCorrect?: string | undefined;
1124
1164
  autoSave?: string | undefined;
1125
1165
  color?: "textDefault" | "background6" | undefined;
@@ -1131,59 +1171,64 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1131
1171
  results?: number | undefined;
1132
1172
  security?: string | undefined;
1133
1173
  unselectable?: "on" | "off" | undefined;
1134
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1174
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
1135
1175
  is?: string | undefined;
1136
- 'aria-activedescendant'?: string | undefined;
1137
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
1138
- 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
1139
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
1140
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
1141
- 'aria-colcount'?: number | undefined;
1142
- 'aria-colindex'?: number | undefined;
1143
- 'aria-colspan'?: number | undefined;
1144
- 'aria-controls'?: string | undefined;
1145
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
1146
- 'aria-describedby'?: string | undefined;
1147
- 'aria-details'?: string | undefined;
1148
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
1149
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
1150
- 'aria-errormessage'?: string | undefined;
1151
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
1152
- 'aria-flowto'?: string | undefined;
1153
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
1154
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
1155
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
1156
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1157
- 'aria-keyshortcuts'?: string | undefined;
1158
- 'aria-label'?: string | undefined;
1159
- 'aria-labelledby'?: string | undefined;
1160
- 'aria-level'?: number | undefined;
1161
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
1162
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
1163
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
1164
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
1165
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
1166
- 'aria-owns'?: string | undefined;
1167
- 'aria-placeholder'?: string | undefined;
1168
- 'aria-posinset'?: number | undefined;
1169
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
1170
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
1171
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
1172
- 'aria-required'?: (boolean | "true" | "false") | undefined;
1173
- 'aria-roledescription'?: string | undefined;
1174
- 'aria-rowcount'?: number | undefined;
1175
- 'aria-rowindex'?: number | undefined;
1176
- 'aria-rowspan'?: number | undefined;
1177
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
1178
- 'aria-setsize'?: number | undefined;
1179
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
1180
- 'aria-valuemax'?: number | undefined;
1181
- 'aria-valuemin'?: number | undefined;
1182
- 'aria-valuenow'?: number | undefined;
1183
- 'aria-valuetext'?: string | undefined;
1184
- children: import("react").ReactNode;
1176
+ "aria-activedescendant"?: string | undefined;
1177
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
1178
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
1179
+ "aria-braillelabel"?: string | undefined;
1180
+ "aria-brailleroledescription"?: string | undefined;
1181
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
1182
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
1183
+ "aria-colcount"?: number | undefined;
1184
+ "aria-colindex"?: number | undefined;
1185
+ "aria-colindextext"?: string | undefined;
1186
+ "aria-colspan"?: number | undefined;
1187
+ "aria-controls"?: string | undefined;
1188
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
1189
+ "aria-describedby"?: string | undefined;
1190
+ "aria-description"?: string | undefined;
1191
+ "aria-details"?: string | undefined;
1192
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
1193
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
1194
+ "aria-errormessage"?: string | undefined;
1195
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
1196
+ "aria-flowto"?: string | undefined;
1197
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
1198
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
1199
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
1200
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
1201
+ "aria-keyshortcuts"?: string | undefined;
1202
+ "aria-label"?: string | undefined;
1203
+ "aria-labelledby"?: string | undefined;
1204
+ "aria-level"?: number | undefined;
1205
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
1206
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
1207
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
1208
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
1209
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
1210
+ "aria-owns"?: string | undefined;
1211
+ "aria-placeholder"?: string | undefined;
1212
+ "aria-posinset"?: number | undefined;
1213
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
1214
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
1215
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
1216
+ "aria-required"?: (boolean | "true" | "false") | undefined;
1217
+ "aria-roledescription"?: string | undefined;
1218
+ "aria-rowcount"?: number | undefined;
1219
+ "aria-rowindex"?: number | undefined;
1220
+ "aria-rowindextext"?: string | undefined;
1221
+ "aria-rowspan"?: number | undefined;
1222
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
1223
+ "aria-setsize"?: number | undefined;
1224
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
1225
+ "aria-valuemax"?: number | undefined;
1226
+ "aria-valuemin"?: number | undefined;
1227
+ "aria-valuenow"?: number | undefined;
1228
+ "aria-valuetext"?: string | undefined;
1229
+ children: import("react").ReactNode | undefined;
1185
1230
  dangerouslySetInnerHTML?: {
1186
- __html: string;
1231
+ __html: string | TrustedHTML;
1187
1232
  } | undefined;
1188
1233
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
1189
1234
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -1253,6 +1298,8 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1253
1298
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1254
1299
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1255
1300
  onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1301
+ onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1302
+ onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1256
1303
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1257
1304
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1258
1305
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -1322,9 +1369,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1322
1369
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1323
1370
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1324
1371
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1325
- onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1326
1372
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1327
- onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1328
1373
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1329
1374
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1330
1375
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -1345,10 +1390,10 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1345
1390
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
1346
1391
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1347
1392
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1348
- size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1349
- weight?: "normal" | "bold" | undefined;
1393
+ size?: import("../../system").FontSizeType;
1394
+ weight?: import("../../system").FontWeightType;
1350
1395
  theme: import("styled-components").DefaultTheme;
1351
- }, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
1396
+ }, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
1352
1397
  export declare const H6: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
1353
1398
  level: 6;
1354
1399
  defaultChecked?: boolean | undefined;
@@ -1356,16 +1401,18 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1356
1401
  suppressContentEditableWarning?: boolean | undefined;
1357
1402
  suppressHydrationWarning?: boolean | undefined;
1358
1403
  accessKey?: string | undefined;
1404
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
1405
+ autoFocus?: boolean | undefined;
1359
1406
  className?: string | undefined;
1360
- contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
1407
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
1361
1408
  contextMenu?: string | undefined;
1362
1409
  dir?: string | undefined;
1363
1410
  draggable?: (boolean | "true" | "false") | undefined;
1411
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
1364
1412
  hidden?: boolean | undefined;
1365
1413
  id?: string | undefined;
1366
1414
  lang?: string | undefined;
1367
1415
  nonce?: string | undefined;
1368
- placeholder?: string | undefined;
1369
1416
  slot?: string | undefined;
1370
1417
  spellCheck?: (boolean | "true" | "false") | undefined;
1371
1418
  style?: import("react").CSSProperties | undefined;
@@ -1375,14 +1422,16 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1375
1422
  radioGroup?: string | undefined;
1376
1423
  role?: import("react").AriaRole | undefined;
1377
1424
  about?: string | undefined;
1425
+ content?: string | undefined;
1378
1426
  datatype?: string | undefined;
1379
1427
  inlist?: any;
1380
1428
  prefix?: string | undefined;
1381
1429
  property?: string | undefined;
1430
+ rel?: string | undefined;
1382
1431
  resource?: string | undefined;
1432
+ rev?: string | undefined;
1383
1433
  typeof?: string | undefined;
1384
1434
  vocab?: string | undefined;
1385
- autoCapitalize?: string | undefined;
1386
1435
  autoCorrect?: string | undefined;
1387
1436
  autoSave?: string | undefined;
1388
1437
  color?: "textDefault" | "background6" | undefined;
@@ -1394,59 +1443,64 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1394
1443
  results?: number | undefined;
1395
1444
  security?: string | undefined;
1396
1445
  unselectable?: "on" | "off" | undefined;
1397
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1446
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
1398
1447
  is?: string | undefined;
1399
- 'aria-activedescendant'?: string | undefined;
1400
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
1401
- 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
1402
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
1403
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
1404
- 'aria-colcount'?: number | undefined;
1405
- 'aria-colindex'?: number | undefined;
1406
- 'aria-colspan'?: number | undefined;
1407
- 'aria-controls'?: string | undefined;
1408
- 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
1409
- 'aria-describedby'?: string | undefined;
1410
- 'aria-details'?: string | undefined;
1411
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
1412
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
1413
- 'aria-errormessage'?: string | undefined;
1414
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
1415
- 'aria-flowto'?: string | undefined;
1416
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
1417
- 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
1418
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
1419
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1420
- 'aria-keyshortcuts'?: string | undefined;
1421
- 'aria-label'?: string | undefined;
1422
- 'aria-labelledby'?: string | undefined;
1423
- 'aria-level'?: number | undefined;
1424
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
1425
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
1426
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
1427
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
1428
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
1429
- 'aria-owns'?: string | undefined;
1430
- 'aria-placeholder'?: string | undefined;
1431
- 'aria-posinset'?: number | undefined;
1432
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
1433
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
1434
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
1435
- 'aria-required'?: (boolean | "true" | "false") | undefined;
1436
- 'aria-roledescription'?: string | undefined;
1437
- 'aria-rowcount'?: number | undefined;
1438
- 'aria-rowindex'?: number | undefined;
1439
- 'aria-rowspan'?: number | undefined;
1440
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
1441
- 'aria-setsize'?: number | undefined;
1442
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
1443
- 'aria-valuemax'?: number | undefined;
1444
- 'aria-valuemin'?: number | undefined;
1445
- 'aria-valuenow'?: number | undefined;
1446
- 'aria-valuetext'?: string | undefined;
1447
- children: import("react").ReactNode;
1448
+ "aria-activedescendant"?: string | undefined;
1449
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
1450
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
1451
+ "aria-braillelabel"?: string | undefined;
1452
+ "aria-brailleroledescription"?: string | undefined;
1453
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
1454
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
1455
+ "aria-colcount"?: number | undefined;
1456
+ "aria-colindex"?: number | undefined;
1457
+ "aria-colindextext"?: string | undefined;
1458
+ "aria-colspan"?: number | undefined;
1459
+ "aria-controls"?: string | undefined;
1460
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
1461
+ "aria-describedby"?: string | undefined;
1462
+ "aria-description"?: string | undefined;
1463
+ "aria-details"?: string | undefined;
1464
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
1465
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
1466
+ "aria-errormessage"?: string | undefined;
1467
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
1468
+ "aria-flowto"?: string | undefined;
1469
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
1470
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
1471
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
1472
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
1473
+ "aria-keyshortcuts"?: string | undefined;
1474
+ "aria-label"?: string | undefined;
1475
+ "aria-labelledby"?: string | undefined;
1476
+ "aria-level"?: number | undefined;
1477
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
1478
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
1479
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
1480
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
1481
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
1482
+ "aria-owns"?: string | undefined;
1483
+ "aria-placeholder"?: string | undefined;
1484
+ "aria-posinset"?: number | undefined;
1485
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
1486
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
1487
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
1488
+ "aria-required"?: (boolean | "true" | "false") | undefined;
1489
+ "aria-roledescription"?: string | undefined;
1490
+ "aria-rowcount"?: number | undefined;
1491
+ "aria-rowindex"?: number | undefined;
1492
+ "aria-rowindextext"?: string | undefined;
1493
+ "aria-rowspan"?: number | undefined;
1494
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
1495
+ "aria-setsize"?: number | undefined;
1496
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
1497
+ "aria-valuemax"?: number | undefined;
1498
+ "aria-valuemin"?: number | undefined;
1499
+ "aria-valuenow"?: number | undefined;
1500
+ "aria-valuetext"?: string | undefined;
1501
+ children: import("react").ReactNode | undefined;
1448
1502
  dangerouslySetInnerHTML?: {
1449
- __html: string;
1503
+ __html: string | TrustedHTML;
1450
1504
  } | undefined;
1451
1505
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
1452
1506
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -1516,6 +1570,8 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1516
1570
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1517
1571
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1518
1572
  onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1573
+ onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1574
+ onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1519
1575
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1520
1576
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1521
1577
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -1585,9 +1641,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1585
1641
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1586
1642
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1587
1643
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1588
- onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1589
1644
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1590
- onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1591
1645
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1592
1646
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1593
1647
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -1608,7 +1662,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1608
1662
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
1609
1663
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1610
1664
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1611
- size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1612
- weight?: "normal" | "bold" | undefined;
1665
+ size?: import("../../system").FontSizeType;
1666
+ weight?: import("../../system").FontWeightType;
1613
1667
  theme: import("styled-components").DefaultTheme;
1614
- }, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
1668
+ }, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;