@openfin/ui-library 0.28.1-alpha.1738144127 → 0.28.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +65 -36
  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 +2 -1
  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 +8 -10
  42. package/dist/components/input/Checkbox/checkbox.d.ts +7 -7
  43. package/dist/components/input/NumberInput/numberInput.d.ts +1 -0
  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 +8 -7
  47. package/dist/components/layout/Box/box.d.ts +15 -1
  48. package/dist/components/layout/HamburgerNavigation/sidebarMenu.d.ts +1 -1
  49. package/dist/components/layout/TabList/tab.d.ts +1 -2
  50. package/dist/components/system/ThemeProvider/lib/iconSet.d.ts +320 -340
  51. package/dist/components/system/ThemeProvider/themeProvider.d.ts +1 -2
  52. package/dist/components/system/ThemeProvider/themeProvider.spec.d.ts +1 -1
  53. package/dist/components/templates/CascadingDropdownMenu/cascadingDropdownMenu.d.ts +2 -1
  54. package/dist/components/templates/ContactCard/PresenceIcons.d.ts +4 -4
  55. package/dist/components/typography/Heading/heading.d.ts +354 -408
  56. package/dist/components/typography/Text/text.d.ts +6 -1
  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 +17 -3
  61. package/dist/storybookHelpers.d.ts +54 -53
  62. package/package.json +20 -20
@@ -41,18 +41,16 @@ 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;
46
44
  className?: string | undefined;
47
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
45
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
48
46
  contextMenu?: string | undefined;
49
47
  dir?: string | undefined;
50
48
  draggable?: (boolean | "true" | "false") | undefined;
51
- enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
52
49
  hidden?: boolean | undefined;
53
50
  id?: string | undefined;
54
51
  lang?: string | undefined;
55
52
  nonce?: string | undefined;
53
+ placeholder?: string | undefined;
56
54
  slot?: string | undefined;
57
55
  spellCheck?: (boolean | "true" | "false") | undefined;
58
56
  style?: import("react").CSSProperties | undefined;
@@ -62,16 +60,14 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
62
60
  radioGroup?: string | undefined;
63
61
  role?: import("react").AriaRole | undefined;
64
62
  about?: string | undefined;
65
- content?: string | undefined;
66
63
  datatype?: string | undefined;
67
64
  inlist?: any;
68
65
  prefix?: string | undefined;
69
66
  property?: string | undefined;
70
- rel?: string | undefined;
71
67
  resource?: string | undefined;
72
- rev?: string | undefined;
73
68
  typeof?: string | undefined;
74
69
  vocab?: string | undefined;
70
+ autoCapitalize?: string | undefined;
75
71
  autoCorrect?: string | undefined;
76
72
  autoSave?: string | undefined;
77
73
  color?: "textDefault" | "background6" | undefined;
@@ -83,64 +79,59 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
83
79
  results?: number | undefined;
84
80
  security?: string | undefined;
85
81
  unselectable?: "on" | "off" | undefined;
86
- inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
82
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
87
83
  is?: string | undefined;
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;
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;
142
133
  dangerouslySetInnerHTML?: {
143
- __html: string | TrustedHTML;
134
+ __html: string;
144
135
  } | undefined;
145
136
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
146
137
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -210,8 +201,6 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
210
201
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
211
202
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
212
203
  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;
215
204
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
216
205
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
217
206
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -281,7 +270,9 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
281
270
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
282
271
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
283
272
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
273
+ onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
284
274
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
275
+ onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
285
276
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
286
277
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
287
278
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -302,10 +293,10 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
302
293
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
303
294
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
304
295
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
305
- size?: import("../../system").FontSizeType;
306
- weight?: import("../../system").FontWeightType;
296
+ size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
297
+ weight?: "normal" | "bold" | undefined;
307
298
  theme: import("styled-components").DefaultTheme;
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">;
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">;
309
300
  export declare const H2: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
310
301
  level: 2;
311
302
  defaultChecked?: boolean | undefined;
@@ -313,18 +304,16 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
313
304
  suppressContentEditableWarning?: boolean | undefined;
314
305
  suppressHydrationWarning?: boolean | undefined;
315
306
  accessKey?: string | undefined;
316
- autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
317
- autoFocus?: boolean | undefined;
318
307
  className?: string | undefined;
319
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
308
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
320
309
  contextMenu?: string | undefined;
321
310
  dir?: string | undefined;
322
311
  draggable?: (boolean | "true" | "false") | undefined;
323
- enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
324
312
  hidden?: boolean | undefined;
325
313
  id?: string | undefined;
326
314
  lang?: string | undefined;
327
315
  nonce?: string | undefined;
316
+ placeholder?: string | undefined;
328
317
  slot?: string | undefined;
329
318
  spellCheck?: (boolean | "true" | "false") | undefined;
330
319
  style?: import("react").CSSProperties | undefined;
@@ -334,16 +323,14 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
334
323
  radioGroup?: string | undefined;
335
324
  role?: import("react").AriaRole | undefined;
336
325
  about?: string | undefined;
337
- content?: string | undefined;
338
326
  datatype?: string | undefined;
339
327
  inlist?: any;
340
328
  prefix?: string | undefined;
341
329
  property?: string | undefined;
342
- rel?: string | undefined;
343
330
  resource?: string | undefined;
344
- rev?: string | undefined;
345
331
  typeof?: string | undefined;
346
332
  vocab?: string | undefined;
333
+ autoCapitalize?: string | undefined;
347
334
  autoCorrect?: string | undefined;
348
335
  autoSave?: string | undefined;
349
336
  color?: "textDefault" | "background6" | undefined;
@@ -355,64 +342,59 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
355
342
  results?: number | undefined;
356
343
  security?: string | undefined;
357
344
  unselectable?: "on" | "off" | undefined;
358
- inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
345
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
359
346
  is?: string | undefined;
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;
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;
414
396
  dangerouslySetInnerHTML?: {
415
- __html: string | TrustedHTML;
397
+ __html: string;
416
398
  } | undefined;
417
399
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
418
400
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -482,8 +464,6 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
482
464
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
483
465
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
484
466
  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;
487
467
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
488
468
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
489
469
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -553,7 +533,9 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
553
533
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
554
534
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
555
535
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
536
+ onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
556
537
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
538
+ onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
557
539
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
558
540
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
559
541
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -574,10 +556,10 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
574
556
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
575
557
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
576
558
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
577
- size?: import("../../system").FontSizeType;
578
- weight?: import("../../system").FontWeightType;
559
+ size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
560
+ weight?: "normal" | "bold" | undefined;
579
561
  theme: import("styled-components").DefaultTheme;
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">;
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">;
581
563
  export declare const H3: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
582
564
  level: 3;
583
565
  defaultChecked?: boolean | undefined;
@@ -585,18 +567,16 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
585
567
  suppressContentEditableWarning?: boolean | undefined;
586
568
  suppressHydrationWarning?: boolean | undefined;
587
569
  accessKey?: string | undefined;
588
- autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
589
- autoFocus?: boolean | undefined;
590
570
  className?: string | undefined;
591
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
571
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
592
572
  contextMenu?: string | undefined;
593
573
  dir?: string | undefined;
594
574
  draggable?: (boolean | "true" | "false") | undefined;
595
- enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
596
575
  hidden?: boolean | undefined;
597
576
  id?: string | undefined;
598
577
  lang?: string | undefined;
599
578
  nonce?: string | undefined;
579
+ placeholder?: string | undefined;
600
580
  slot?: string | undefined;
601
581
  spellCheck?: (boolean | "true" | "false") | undefined;
602
582
  style?: import("react").CSSProperties | undefined;
@@ -606,16 +586,14 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
606
586
  radioGroup?: string | undefined;
607
587
  role?: import("react").AriaRole | undefined;
608
588
  about?: string | undefined;
609
- content?: string | undefined;
610
589
  datatype?: string | undefined;
611
590
  inlist?: any;
612
591
  prefix?: string | undefined;
613
592
  property?: string | undefined;
614
- rel?: string | undefined;
615
593
  resource?: string | undefined;
616
- rev?: string | undefined;
617
594
  typeof?: string | undefined;
618
595
  vocab?: string | undefined;
596
+ autoCapitalize?: string | undefined;
619
597
  autoCorrect?: string | undefined;
620
598
  autoSave?: string | undefined;
621
599
  color?: "textDefault" | "background6" | undefined;
@@ -627,64 +605,59 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
627
605
  results?: number | undefined;
628
606
  security?: string | undefined;
629
607
  unselectable?: "on" | "off" | undefined;
630
- inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
608
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
631
609
  is?: string | undefined;
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;
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;
686
659
  dangerouslySetInnerHTML?: {
687
- __html: string | TrustedHTML;
660
+ __html: string;
688
661
  } | undefined;
689
662
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
690
663
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -754,8 +727,6 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
754
727
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
755
728
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
756
729
  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;
759
730
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
760
731
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
761
732
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -825,7 +796,9 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
825
796
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
826
797
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
827
798
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
799
+ onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
828
800
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
801
+ onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
829
802
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
830
803
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
831
804
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -846,10 +819,10 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
846
819
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
847
820
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
848
821
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
849
- size?: import("../../system").FontSizeType;
850
- weight?: import("../../system").FontWeightType;
822
+ size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
823
+ weight?: "normal" | "bold" | undefined;
851
824
  theme: import("styled-components").DefaultTheme;
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">;
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">;
853
826
  export declare const H4: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
854
827
  level: 4;
855
828
  defaultChecked?: boolean | undefined;
@@ -857,18 +830,16 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
857
830
  suppressContentEditableWarning?: boolean | undefined;
858
831
  suppressHydrationWarning?: boolean | undefined;
859
832
  accessKey?: string | undefined;
860
- autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
861
- autoFocus?: boolean | undefined;
862
833
  className?: string | undefined;
863
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
834
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
864
835
  contextMenu?: string | undefined;
865
836
  dir?: string | undefined;
866
837
  draggable?: (boolean | "true" | "false") | undefined;
867
- enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
868
838
  hidden?: boolean | undefined;
869
839
  id?: string | undefined;
870
840
  lang?: string | undefined;
871
841
  nonce?: string | undefined;
842
+ placeholder?: string | undefined;
872
843
  slot?: string | undefined;
873
844
  spellCheck?: (boolean | "true" | "false") | undefined;
874
845
  style?: import("react").CSSProperties | undefined;
@@ -878,16 +849,14 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
878
849
  radioGroup?: string | undefined;
879
850
  role?: import("react").AriaRole | undefined;
880
851
  about?: string | undefined;
881
- content?: string | undefined;
882
852
  datatype?: string | undefined;
883
853
  inlist?: any;
884
854
  prefix?: string | undefined;
885
855
  property?: string | undefined;
886
- rel?: string | undefined;
887
856
  resource?: string | undefined;
888
- rev?: string | undefined;
889
857
  typeof?: string | undefined;
890
858
  vocab?: string | undefined;
859
+ autoCapitalize?: string | undefined;
891
860
  autoCorrect?: string | undefined;
892
861
  autoSave?: string | undefined;
893
862
  color?: "textDefault" | "background6" | undefined;
@@ -899,64 +868,59 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
899
868
  results?: number | undefined;
900
869
  security?: string | undefined;
901
870
  unselectable?: "on" | "off" | undefined;
902
- inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
871
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
903
872
  is?: string | undefined;
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;
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;
958
922
  dangerouslySetInnerHTML?: {
959
- __html: string | TrustedHTML;
923
+ __html: string;
960
924
  } | undefined;
961
925
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
962
926
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -1026,8 +990,6 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
1026
990
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1027
991
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1028
992
  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;
1031
993
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1032
994
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1033
995
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -1097,7 +1059,9 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
1097
1059
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1098
1060
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1099
1061
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1062
+ onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1100
1063
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1064
+ onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1101
1065
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1102
1066
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1103
1067
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -1118,10 +1082,10 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
1118
1082
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
1119
1083
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1120
1084
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1121
- size?: import("../../system").FontSizeType;
1122
- weight?: import("../../system").FontWeightType;
1085
+ size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1086
+ weight?: "normal" | "bold" | undefined;
1123
1087
  theme: import("styled-components").DefaultTheme;
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">;
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">;
1125
1089
  export declare const H5: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
1126
1090
  level: 5;
1127
1091
  defaultChecked?: boolean | undefined;
@@ -1129,18 +1093,16 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1129
1093
  suppressContentEditableWarning?: boolean | undefined;
1130
1094
  suppressHydrationWarning?: boolean | undefined;
1131
1095
  accessKey?: string | undefined;
1132
- autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
1133
- autoFocus?: boolean | undefined;
1134
1096
  className?: string | undefined;
1135
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
1097
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
1136
1098
  contextMenu?: string | undefined;
1137
1099
  dir?: string | undefined;
1138
1100
  draggable?: (boolean | "true" | "false") | undefined;
1139
- enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
1140
1101
  hidden?: boolean | undefined;
1141
1102
  id?: string | undefined;
1142
1103
  lang?: string | undefined;
1143
1104
  nonce?: string | undefined;
1105
+ placeholder?: string | undefined;
1144
1106
  slot?: string | undefined;
1145
1107
  spellCheck?: (boolean | "true" | "false") | undefined;
1146
1108
  style?: import("react").CSSProperties | undefined;
@@ -1150,16 +1112,14 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1150
1112
  radioGroup?: string | undefined;
1151
1113
  role?: import("react").AriaRole | undefined;
1152
1114
  about?: string | undefined;
1153
- content?: string | undefined;
1154
1115
  datatype?: string | undefined;
1155
1116
  inlist?: any;
1156
1117
  prefix?: string | undefined;
1157
1118
  property?: string | undefined;
1158
- rel?: string | undefined;
1159
1119
  resource?: string | undefined;
1160
- rev?: string | undefined;
1161
1120
  typeof?: string | undefined;
1162
1121
  vocab?: string | undefined;
1122
+ autoCapitalize?: string | undefined;
1163
1123
  autoCorrect?: string | undefined;
1164
1124
  autoSave?: string | undefined;
1165
1125
  color?: "textDefault" | "background6" | undefined;
@@ -1171,64 +1131,59 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1171
1131
  results?: number | undefined;
1172
1132
  security?: string | undefined;
1173
1133
  unselectable?: "on" | "off" | undefined;
1174
- inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
1134
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1175
1135
  is?: string | undefined;
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;
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;
1230
1185
  dangerouslySetInnerHTML?: {
1231
- __html: string | TrustedHTML;
1186
+ __html: string;
1232
1187
  } | undefined;
1233
1188
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
1234
1189
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -1298,8 +1253,6 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1298
1253
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1299
1254
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1300
1255
  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;
1303
1256
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1304
1257
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1305
1258
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -1369,7 +1322,9 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1369
1322
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1370
1323
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1371
1324
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1325
+ onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1372
1326
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1327
+ onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1373
1328
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1374
1329
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1375
1330
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -1390,10 +1345,10 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1390
1345
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
1391
1346
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1392
1347
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1393
- size?: import("../../system").FontSizeType;
1394
- weight?: import("../../system").FontWeightType;
1348
+ size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1349
+ weight?: "normal" | "bold" | undefined;
1395
1350
  theme: import("styled-components").DefaultTheme;
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">;
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">;
1397
1352
  export declare const H6: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
1398
1353
  level: 6;
1399
1354
  defaultChecked?: boolean | undefined;
@@ -1401,18 +1356,16 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1401
1356
  suppressContentEditableWarning?: boolean | undefined;
1402
1357
  suppressHydrationWarning?: boolean | undefined;
1403
1358
  accessKey?: string | undefined;
1404
- autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
1405
- autoFocus?: boolean | undefined;
1406
1359
  className?: string | undefined;
1407
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
1360
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
1408
1361
  contextMenu?: string | undefined;
1409
1362
  dir?: string | undefined;
1410
1363
  draggable?: (boolean | "true" | "false") | undefined;
1411
- enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
1412
1364
  hidden?: boolean | undefined;
1413
1365
  id?: string | undefined;
1414
1366
  lang?: string | undefined;
1415
1367
  nonce?: string | undefined;
1368
+ placeholder?: string | undefined;
1416
1369
  slot?: string | undefined;
1417
1370
  spellCheck?: (boolean | "true" | "false") | undefined;
1418
1371
  style?: import("react").CSSProperties | undefined;
@@ -1422,16 +1375,14 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1422
1375
  radioGroup?: string | undefined;
1423
1376
  role?: import("react").AriaRole | undefined;
1424
1377
  about?: string | undefined;
1425
- content?: string | undefined;
1426
1378
  datatype?: string | undefined;
1427
1379
  inlist?: any;
1428
1380
  prefix?: string | undefined;
1429
1381
  property?: string | undefined;
1430
- rel?: string | undefined;
1431
1382
  resource?: string | undefined;
1432
- rev?: string | undefined;
1433
1383
  typeof?: string | undefined;
1434
1384
  vocab?: string | undefined;
1385
+ autoCapitalize?: string | undefined;
1435
1386
  autoCorrect?: string | undefined;
1436
1387
  autoSave?: string | undefined;
1437
1388
  color?: "textDefault" | "background6" | undefined;
@@ -1443,64 +1394,59 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1443
1394
  results?: number | undefined;
1444
1395
  security?: string | undefined;
1445
1396
  unselectable?: "on" | "off" | undefined;
1446
- inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
1397
+ inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1447
1398
  is?: string | undefined;
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;
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;
1502
1448
  dangerouslySetInnerHTML?: {
1503
- __html: string | TrustedHTML;
1449
+ __html: string;
1504
1450
  } | undefined;
1505
1451
  onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
1506
1452
  onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
@@ -1570,8 +1516,6 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1570
1516
  onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1571
1517
  onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1572
1518
  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;
1575
1519
  onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1576
1520
  onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
1577
1521
  onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
@@ -1641,7 +1585,9 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1641
1585
  onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1642
1586
  onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1643
1587
  onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1588
+ onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1644
1589
  onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1590
+ onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1645
1591
  onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1646
1592
  onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
1647
1593
  onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
@@ -1662,7 +1608,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1662
1608
  onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
1663
1609
  onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1664
1610
  onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
1665
- size?: import("../../system").FontSizeType;
1666
- weight?: import("../../system").FontWeightType;
1611
+ size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1612
+ weight?: "normal" | "bold" | undefined;
1667
1613
  theme: import("styled-components").DefaultTheme;
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">;
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">;