@openfin/ui-library 0.12.0 → 0.13.0-alpha.1679309260

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