@openfin/ui-library 0.12.0-alpha.1678913049 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/components/controls/Button/button.d.ts +3 -3
  2. package/dist/components/controls/Button/button.variants.d.ts +4 -4
  3. package/dist/components/controls/ExpandableButton/expandableButton.d.ts +2 -2
  4. package/dist/components/controls/ExpandableButton/expandablePanel.d.ts +1 -1
  5. package/dist/components/controls/Toggle/toggle.d.ts +2 -2
  6. package/dist/components/elements/Badge/badge.d.ts +1 -1
  7. package/dist/components/elements/DropdownMenu/dropdownMenu.d.ts +5 -5
  8. package/dist/components/elements/DropdownMenu/{optionTitle.d.ts → dropdownOptionTitle.d.ts} +2 -2
  9. package/dist/components/elements/DropdownMenu/dropdownOptionsMenu.d.ts +24 -0
  10. package/dist/components/elements/DropdownMenu/index.d.ts +0 -1
  11. package/dist/components/elements/Icon/icon.d.ts +4 -4
  12. package/dist/components/elements/IconWithBadge/iconWithBadge.d.ts +1 -1
  13. package/dist/components/elements/Loader/loader.d.ts +1 -1
  14. package/dist/components/elements/Loader/openfinLoader.d.ts +1 -1
  15. package/dist/components/input/BaseInput/baseInput.d.ts +1 -1
  16. package/dist/components/input/Checkbox/checkbox.d.ts +1 -1
  17. package/dist/components/input/RadioGroup/radioGroup.d.ts +2 -2
  18. package/dist/components/input/RadioInput/radioInput.d.ts +2 -2
  19. package/dist/components/input/TextInput/textInput.d.ts +1 -1
  20. package/dist/components/layout/Box/box.d.ts +1 -1
  21. package/dist/components/layout/Box/types.d.ts +7 -7
  22. package/dist/components/system/HOC/index.d.ts +2 -2
  23. package/dist/components/system/ThemeProvider/lib/config.d.ts +3 -3
  24. package/dist/components/system/ThemeProvider/lib/constants.d.ts +0 -1
  25. package/dist/components/system/ThemeProvider/lib/helpers.d.ts +1 -1
  26. package/dist/components/system/ThemeProvider/lib/palette.d.ts +0 -1
  27. package/dist/components/system/ThemeProvider/lib/types.d.ts +20 -20
  28. package/dist/components/system/ThemeProvider/themeProvider.d.ts +1 -1
  29. package/dist/components/typography/Heading/heading.d.ts +105 -111
  30. package/dist/components/typography/Text/text.d.ts +1 -1
  31. package/dist/hooks/useColorScheme.d.ts +2 -2
  32. package/dist/index.d.ts +0 -3
  33. package/dist/index.js +84 -224
  34. package/dist/index.js.LICENSE.txt +2 -2
  35. package/package.json +4 -11
  36. package/dist/components/elements/Calendar/calendar.d.ts +0 -7
  37. package/dist/components/elements/Calendar/index.d.ts +0 -1
  38. package/dist/components/elements/DropdownMenu/menu.d.ts +0 -57
  39. package/dist/components/input/DateInput/dateInput.d.ts +0 -12
  40. package/dist/components/input/DateInput/index.d.ts +0 -1
  41. package/dist/hooks/useDropdownKeyboardNavigation.d.ts +0 -16
@@ -8,9 +8,9 @@ export declare const defaultSize: {
8
8
  readonly h5: "base";
9
9
  readonly h6: "small";
10
10
  };
11
- export type HeadingLevelType = keyof typeof defaultSize;
12
- export type LevelType = 1 | 2 | 3 | 4 | 5 | 6;
13
- export type HeadingProps = HTMLAttributes<HTMLHeadingElement> & TextProps & {
11
+ export declare type HeadingLevelType = keyof typeof defaultSize;
12
+ export declare type LevelType = 1 | 2 | 3 | 4 | 5 | 6;
13
+ export declare type HeadingProps = HTMLAttributes<HTMLHeadingElement> & TextProps & {
14
14
  level?: LevelType;
15
15
  };
16
16
  /**
@@ -49,7 +49,6 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
49
49
  hidden?: boolean | undefined;
50
50
  id?: string | undefined;
51
51
  lang?: string | undefined;
52
- nonce?: string | undefined;
53
52
  placeholder?: string | undefined;
54
53
  slot?: string | undefined;
55
54
  spellCheck?: (boolean | "true" | "false") | undefined;
@@ -58,7 +57,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
58
57
  title?: string | undefined;
59
58
  translate?: "yes" | "no" | undefined;
60
59
  radioGroup?: string | undefined;
61
- role?: import("react").AriaRole | undefined;
60
+ role?: string | undefined;
62
61
  about?: string | undefined;
63
62
  datatype?: string | undefined;
64
63
  inlist?: any;
@@ -79,12 +78,12 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
79
78
  results?: number | undefined;
80
79
  security?: string | undefined;
81
80
  unselectable?: "on" | "off" | undefined;
82
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
81
+ inputMode?: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
83
82
  is?: string | undefined;
84
83
  '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;
84
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
85
+ 'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
86
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
88
87
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
89
88
  'aria-colcount'?: number | undefined;
90
89
  'aria-colindex'?: number | undefined;
@@ -93,36 +92,36 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
93
92
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
94
93
  'aria-describedby'?: string | undefined;
95
94
  'aria-details'?: string | undefined;
96
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
95
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
97
96
  'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
98
97
  'aria-errormessage'?: string | undefined;
99
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
98
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
100
99
  '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;
100
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
101
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "listbox" | "tree" | "grid" | undefined;
102
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
104
103
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
105
104
  'aria-keyshortcuts'?: string | undefined;
106
105
  'aria-label'?: string | undefined;
107
106
  'aria-labelledby'?: string | undefined;
108
107
  'aria-level'?: number | undefined;
109
108
  '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;
109
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
110
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
111
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
113
112
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
114
113
  'aria-owns'?: string | undefined;
115
114
  'aria-placeholder'?: string | undefined;
116
115
  'aria-posinset'?: number | undefined;
117
116
  'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
118
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
117
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
119
118
  '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;
119
+ 'aria-required'?: boolean | "true" | "false" | undefined;
121
120
  'aria-roledescription'?: string | undefined;
122
121
  'aria-rowcount'?: number | undefined;
123
122
  'aria-rowindex'?: number | undefined;
124
123
  'aria-rowspan'?: number | undefined;
125
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
124
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
126
125
  'aria-setsize'?: number | undefined;
127
126
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
128
127
  'aria-valuemax'?: number | undefined;
@@ -296,7 +295,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
296
295
  size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
297
296
  weight?: "bold" | "normal" | undefined;
298
297
  theme: import("styled-components").DefaultTheme;
299
- }, "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" | "children" | "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">;
298
+ }, "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "children" | "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">;
300
299
  export declare const H2: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
301
300
  level: 2;
302
301
  defaultChecked?: boolean | undefined;
@@ -312,7 +311,6 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
312
311
  hidden?: boolean | undefined;
313
312
  id?: string | undefined;
314
313
  lang?: string | undefined;
315
- nonce?: string | undefined;
316
314
  placeholder?: string | undefined;
317
315
  slot?: string | undefined;
318
316
  spellCheck?: (boolean | "true" | "false") | undefined;
@@ -321,7 +319,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
321
319
  title?: string | undefined;
322
320
  translate?: "yes" | "no" | undefined;
323
321
  radioGroup?: string | undefined;
324
- role?: import("react").AriaRole | undefined;
322
+ role?: string | undefined;
325
323
  about?: string | undefined;
326
324
  datatype?: string | undefined;
327
325
  inlist?: any;
@@ -342,12 +340,12 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
342
340
  results?: number | undefined;
343
341
  security?: string | undefined;
344
342
  unselectable?: "on" | "off" | undefined;
345
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
343
+ inputMode?: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
346
344
  is?: string | undefined;
347
345
  '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;
346
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
347
+ 'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
348
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
351
349
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
352
350
  'aria-colcount'?: number | undefined;
353
351
  'aria-colindex'?: number | undefined;
@@ -356,36 +354,36 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
356
354
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
357
355
  'aria-describedby'?: string | undefined;
358
356
  'aria-details'?: string | undefined;
359
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
357
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
360
358
  'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
361
359
  'aria-errormessage'?: string | undefined;
362
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
360
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
363
361
  '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;
362
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
363
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "listbox" | "tree" | "grid" | undefined;
364
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
367
365
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
368
366
  'aria-keyshortcuts'?: string | undefined;
369
367
  'aria-label'?: string | undefined;
370
368
  'aria-labelledby'?: string | undefined;
371
369
  'aria-level'?: number | undefined;
372
370
  '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;
371
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
372
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
373
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
376
374
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
377
375
  'aria-owns'?: string | undefined;
378
376
  'aria-placeholder'?: string | undefined;
379
377
  'aria-posinset'?: number | undefined;
380
378
  'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
381
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
379
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
382
380
  '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;
381
+ 'aria-required'?: boolean | "true" | "false" | undefined;
384
382
  'aria-roledescription'?: string | undefined;
385
383
  'aria-rowcount'?: number | undefined;
386
384
  'aria-rowindex'?: number | undefined;
387
385
  'aria-rowspan'?: number | undefined;
388
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
386
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
389
387
  'aria-setsize'?: number | undefined;
390
388
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
391
389
  'aria-valuemax'?: number | undefined;
@@ -559,7 +557,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
559
557
  size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
560
558
  weight?: "bold" | "normal" | undefined;
561
559
  theme: import("styled-components").DefaultTheme;
562
- }, "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" | "children" | "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">;
560
+ }, "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "children" | "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">;
563
561
  export declare const H3: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
564
562
  level: 3;
565
563
  defaultChecked?: boolean | undefined;
@@ -575,7 +573,6 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
575
573
  hidden?: boolean | undefined;
576
574
  id?: string | undefined;
577
575
  lang?: string | undefined;
578
- nonce?: string | undefined;
579
576
  placeholder?: string | undefined;
580
577
  slot?: string | undefined;
581
578
  spellCheck?: (boolean | "true" | "false") | undefined;
@@ -584,7 +581,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
584
581
  title?: string | undefined;
585
582
  translate?: "yes" | "no" | undefined;
586
583
  radioGroup?: string | undefined;
587
- role?: import("react").AriaRole | undefined;
584
+ role?: string | undefined;
588
585
  about?: string | undefined;
589
586
  datatype?: string | undefined;
590
587
  inlist?: any;
@@ -605,12 +602,12 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
605
602
  results?: number | undefined;
606
603
  security?: string | undefined;
607
604
  unselectable?: "on" | "off" | undefined;
608
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
605
+ inputMode?: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
609
606
  is?: string | undefined;
610
607
  '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;
608
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
609
+ 'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
610
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
614
611
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
615
612
  'aria-colcount'?: number | undefined;
616
613
  'aria-colindex'?: number | undefined;
@@ -619,36 +616,36 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
619
616
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
620
617
  'aria-describedby'?: string | undefined;
621
618
  'aria-details'?: string | undefined;
622
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
619
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
623
620
  'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
624
621
  'aria-errormessage'?: string | undefined;
625
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
622
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
626
623
  '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;
624
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
625
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "listbox" | "tree" | "grid" | undefined;
626
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
630
627
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
631
628
  'aria-keyshortcuts'?: string | undefined;
632
629
  'aria-label'?: string | undefined;
633
630
  'aria-labelledby'?: string | undefined;
634
631
  'aria-level'?: number | undefined;
635
632
  '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;
633
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
634
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
635
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
639
636
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
640
637
  'aria-owns'?: string | undefined;
641
638
  'aria-placeholder'?: string | undefined;
642
639
  'aria-posinset'?: number | undefined;
643
640
  'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
644
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
641
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
645
642
  '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;
643
+ 'aria-required'?: boolean | "true" | "false" | undefined;
647
644
  'aria-roledescription'?: string | undefined;
648
645
  'aria-rowcount'?: number | undefined;
649
646
  'aria-rowindex'?: number | undefined;
650
647
  'aria-rowspan'?: number | undefined;
651
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
648
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
652
649
  'aria-setsize'?: number | undefined;
653
650
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
654
651
  'aria-valuemax'?: number | undefined;
@@ -822,7 +819,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
822
819
  size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
823
820
  weight?: "bold" | "normal" | undefined;
824
821
  theme: import("styled-components").DefaultTheme;
825
- }, "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" | "children" | "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">;
822
+ }, "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "children" | "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">;
826
823
  export declare const H4: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
827
824
  level: 4;
828
825
  defaultChecked?: boolean | undefined;
@@ -838,7 +835,6 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
838
835
  hidden?: boolean | undefined;
839
836
  id?: string | undefined;
840
837
  lang?: string | undefined;
841
- nonce?: string | undefined;
842
838
  placeholder?: string | undefined;
843
839
  slot?: string | undefined;
844
840
  spellCheck?: (boolean | "true" | "false") | undefined;
@@ -847,7 +843,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
847
843
  title?: string | undefined;
848
844
  translate?: "yes" | "no" | undefined;
849
845
  radioGroup?: string | undefined;
850
- role?: import("react").AriaRole | undefined;
846
+ role?: string | undefined;
851
847
  about?: string | undefined;
852
848
  datatype?: string | undefined;
853
849
  inlist?: any;
@@ -868,12 +864,12 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
868
864
  results?: number | undefined;
869
865
  security?: string | undefined;
870
866
  unselectable?: "on" | "off" | undefined;
871
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
867
+ inputMode?: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
872
868
  is?: string | undefined;
873
869
  '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;
870
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
871
+ 'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
872
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
877
873
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
878
874
  'aria-colcount'?: number | undefined;
879
875
  'aria-colindex'?: number | undefined;
@@ -882,36 +878,36 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
882
878
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
883
879
  'aria-describedby'?: string | undefined;
884
880
  'aria-details'?: string | undefined;
885
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
881
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
886
882
  'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
887
883
  'aria-errormessage'?: string | undefined;
888
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
884
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
889
885
  '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;
886
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
887
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "listbox" | "tree" | "grid" | undefined;
888
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
893
889
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
894
890
  'aria-keyshortcuts'?: string | undefined;
895
891
  'aria-label'?: string | undefined;
896
892
  'aria-labelledby'?: string | undefined;
897
893
  'aria-level'?: number | undefined;
898
894
  '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;
895
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
896
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
897
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
902
898
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
903
899
  'aria-owns'?: string | undefined;
904
900
  'aria-placeholder'?: string | undefined;
905
901
  'aria-posinset'?: number | undefined;
906
902
  'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
907
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
903
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
908
904
  '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;
905
+ 'aria-required'?: boolean | "true" | "false" | undefined;
910
906
  'aria-roledescription'?: string | undefined;
911
907
  'aria-rowcount'?: number | undefined;
912
908
  'aria-rowindex'?: number | undefined;
913
909
  'aria-rowspan'?: number | undefined;
914
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
910
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
915
911
  'aria-setsize'?: number | undefined;
916
912
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
917
913
  'aria-valuemax'?: number | undefined;
@@ -1085,7 +1081,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
1085
1081
  size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1086
1082
  weight?: "bold" | "normal" | undefined;
1087
1083
  theme: import("styled-components").DefaultTheme;
1088
- }, "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" | "children" | "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">;
1084
+ }, "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "children" | "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">;
1089
1085
  export declare const H5: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
1090
1086
  level: 5;
1091
1087
  defaultChecked?: boolean | undefined;
@@ -1101,7 +1097,6 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1101
1097
  hidden?: boolean | undefined;
1102
1098
  id?: string | undefined;
1103
1099
  lang?: string | undefined;
1104
- nonce?: string | undefined;
1105
1100
  placeholder?: string | undefined;
1106
1101
  slot?: string | undefined;
1107
1102
  spellCheck?: (boolean | "true" | "false") | undefined;
@@ -1110,7 +1105,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1110
1105
  title?: string | undefined;
1111
1106
  translate?: "yes" | "no" | undefined;
1112
1107
  radioGroup?: string | undefined;
1113
- role?: import("react").AriaRole | undefined;
1108
+ role?: string | undefined;
1114
1109
  about?: string | undefined;
1115
1110
  datatype?: string | undefined;
1116
1111
  inlist?: any;
@@ -1131,12 +1126,12 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1131
1126
  results?: number | undefined;
1132
1127
  security?: string | undefined;
1133
1128
  unselectable?: "on" | "off" | undefined;
1134
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1129
+ inputMode?: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
1135
1130
  is?: string | undefined;
1136
1131
  '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;
1132
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
1133
+ 'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
1134
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
1140
1135
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
1141
1136
  'aria-colcount'?: number | undefined;
1142
1137
  'aria-colindex'?: number | undefined;
@@ -1145,36 +1140,36 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1145
1140
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
1146
1141
  'aria-describedby'?: string | undefined;
1147
1142
  'aria-details'?: string | undefined;
1148
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
1143
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
1149
1144
  'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
1150
1145
  'aria-errormessage'?: string | undefined;
1151
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
1146
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
1152
1147
  '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;
1148
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
1149
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "listbox" | "tree" | "grid" | undefined;
1150
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
1156
1151
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1157
1152
  'aria-keyshortcuts'?: string | undefined;
1158
1153
  'aria-label'?: string | undefined;
1159
1154
  'aria-labelledby'?: string | undefined;
1160
1155
  'aria-level'?: number | undefined;
1161
1156
  '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;
1157
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
1158
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
1159
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
1165
1160
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
1166
1161
  'aria-owns'?: string | undefined;
1167
1162
  'aria-placeholder'?: string | undefined;
1168
1163
  'aria-posinset'?: number | undefined;
1169
1164
  'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
1170
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
1165
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
1171
1166
  '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;
1167
+ 'aria-required'?: boolean | "true" | "false" | undefined;
1173
1168
  'aria-roledescription'?: string | undefined;
1174
1169
  'aria-rowcount'?: number | undefined;
1175
1170
  'aria-rowindex'?: number | undefined;
1176
1171
  'aria-rowspan'?: number | undefined;
1177
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
1172
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
1178
1173
  'aria-setsize'?: number | undefined;
1179
1174
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
1180
1175
  'aria-valuemax'?: number | undefined;
@@ -1348,7 +1343,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
1348
1343
  size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1349
1344
  weight?: "bold" | "normal" | undefined;
1350
1345
  theme: import("styled-components").DefaultTheme;
1351
- }, "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" | "children" | "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">;
1346
+ }, "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "children" | "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">;
1352
1347
  export declare const H6: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
1353
1348
  level: 6;
1354
1349
  defaultChecked?: boolean | undefined;
@@ -1364,7 +1359,6 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1364
1359
  hidden?: boolean | undefined;
1365
1360
  id?: string | undefined;
1366
1361
  lang?: string | undefined;
1367
- nonce?: string | undefined;
1368
1362
  placeholder?: string | undefined;
1369
1363
  slot?: string | undefined;
1370
1364
  spellCheck?: (boolean | "true" | "false") | undefined;
@@ -1373,7 +1367,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1373
1367
  title?: string | undefined;
1374
1368
  translate?: "yes" | "no" | undefined;
1375
1369
  radioGroup?: string | undefined;
1376
- role?: import("react").AriaRole | undefined;
1370
+ role?: string | undefined;
1377
1371
  about?: string | undefined;
1378
1372
  datatype?: string | undefined;
1379
1373
  inlist?: any;
@@ -1394,12 +1388,12 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1394
1388
  results?: number | undefined;
1395
1389
  security?: string | undefined;
1396
1390
  unselectable?: "on" | "off" | undefined;
1397
- inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1391
+ inputMode?: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
1398
1392
  is?: string | undefined;
1399
1393
  '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;
1394
+ 'aria-atomic'?: boolean | "true" | "false" | undefined;
1395
+ 'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined;
1396
+ 'aria-busy'?: boolean | "true" | "false" | undefined;
1403
1397
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
1404
1398
  'aria-colcount'?: number | undefined;
1405
1399
  'aria-colindex'?: number | undefined;
@@ -1408,36 +1402,36 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1408
1402
  'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
1409
1403
  'aria-describedby'?: string | undefined;
1410
1404
  'aria-details'?: string | undefined;
1411
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
1405
+ 'aria-disabled'?: boolean | "true" | "false" | undefined;
1412
1406
  'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
1413
1407
  'aria-errormessage'?: string | undefined;
1414
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
1408
+ 'aria-expanded'?: boolean | "true" | "false" | undefined;
1415
1409
  '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;
1410
+ 'aria-grabbed'?: boolean | "true" | "false" | undefined;
1411
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "listbox" | "tree" | "grid" | undefined;
1412
+ 'aria-hidden'?: boolean | "true" | "false" | undefined;
1419
1413
  'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
1420
1414
  'aria-keyshortcuts'?: string | undefined;
1421
1415
  'aria-label'?: string | undefined;
1422
1416
  'aria-labelledby'?: string | undefined;
1423
1417
  'aria-level'?: number | undefined;
1424
1418
  '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;
1419
+ 'aria-modal'?: boolean | "true" | "false" | undefined;
1420
+ 'aria-multiline'?: boolean | "true" | "false" | undefined;
1421
+ 'aria-multiselectable'?: boolean | "true" | "false" | undefined;
1428
1422
  'aria-orientation'?: "horizontal" | "vertical" | undefined;
1429
1423
  'aria-owns'?: string | undefined;
1430
1424
  'aria-placeholder'?: string | undefined;
1431
1425
  'aria-posinset'?: number | undefined;
1432
1426
  'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
1433
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
1427
+ 'aria-readonly'?: boolean | "true" | "false" | undefined;
1434
1428
  '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;
1429
+ 'aria-required'?: boolean | "true" | "false" | undefined;
1436
1430
  'aria-roledescription'?: string | undefined;
1437
1431
  'aria-rowcount'?: number | undefined;
1438
1432
  'aria-rowindex'?: number | undefined;
1439
1433
  'aria-rowspan'?: number | undefined;
1440
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
1434
+ 'aria-selected'?: boolean | "true" | "false" | undefined;
1441
1435
  'aria-setsize'?: number | undefined;
1442
1436
  'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
1443
1437
  'aria-valuemax'?: number | undefined;
@@ -1611,4 +1605,4 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
1611
1605
  size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
1612
1606
  weight?: "bold" | "normal" | undefined;
1613
1607
  theme: import("styled-components").DefaultTheme;
1614
- }, "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" | "children" | "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">;
1608
+ }, "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "children" | "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">;