@codecademy/gamut 68.1.5-alpha.fbf911.0 → 68.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/LICENSE +21 -0
  2. package/dist/Alert/Alert.d.ts +1 -0
  3. package/dist/Alert/elements.d.ts +18 -17
  4. package/dist/Alert/variants.d.ts +2 -1
  5. package/dist/Anchor/index.d.ts +15 -15
  6. package/dist/Animation/ExpandInCollapseOut.d.ts +1 -0
  7. package/dist/AppWrapper/index.d.ts +3 -2
  8. package/dist/Badge/index.d.ts +3 -2
  9. package/dist/BarChart/BarChartProvider.d.ts +19 -0
  10. package/dist/BarChart/BarChartProvider.js +27 -0
  11. package/dist/BarChart/BarRow/ValueLabelsContent.d.ts +7 -0
  12. package/dist/BarChart/BarRow/ValueLabelsContent.js +34 -0
  13. package/dist/BarChart/BarRow/elements.d.ts +959 -0
  14. package/dist/BarChart/BarRow/elements.js +110 -0
  15. package/dist/BarChart/BarRow/index.d.ts +6 -0
  16. package/dist/BarChart/BarRow/index.js +231 -0
  17. package/dist/BarChart/SortSelect/index.d.ts +15 -0
  18. package/dist/BarChart/SortSelect/index.js +18 -0
  19. package/dist/BarChart/index.d.ts +4 -0
  20. package/dist/BarChart/index.js +136 -0
  21. package/dist/BarChart/layout/GridLines.d.ts +3 -0
  22. package/dist/BarChart/layout/GridLines.js +69 -0
  23. package/dist/BarChart/layout/LabelSpacer.d.ts +6 -0
  24. package/dist/BarChart/layout/LabelSpacer.js +56 -0
  25. package/dist/BarChart/layout/ScaleChartHeader.d.ts +3 -0
  26. package/dist/BarChart/layout/ScaleChartHeader.js +87 -0
  27. package/dist/BarChart/shared/elements.d.ts +7 -0
  28. package/dist/BarChart/shared/elements.js +12 -0
  29. package/dist/BarChart/shared/styles.d.ts +4 -0
  30. package/dist/BarChart/shared/styles.js +4 -0
  31. package/dist/BarChart/shared/translations.d.ts +69 -0
  32. package/dist/BarChart/shared/translations.js +57 -0
  33. package/dist/BarChart/shared/types.d.ts +100 -0
  34. package/dist/BarChart/shared/types.js +1 -0
  35. package/dist/BarChart/utils/hooks.d.ts +89 -0
  36. package/dist/BarChart/utils/hooks.js +281 -0
  37. package/dist/BarChart/utils/index.d.ts +56 -0
  38. package/dist/BarChart/utils/index.js +122 -0
  39. package/dist/Box/Box.d.ts +3 -2
  40. package/dist/Box/FlexBox.d.ts +3 -2
  41. package/dist/Box/GridBox.d.ts +3 -2
  42. package/dist/Box/props.d.ts +3 -3
  43. package/dist/Button/CTAButton.d.ts +9 -8
  44. package/dist/Button/FillButton.d.ts +18 -17
  45. package/dist/Button/IconButton.d.ts +19 -19
  46. package/dist/Button/StrokeButton.d.ts +18 -17
  47. package/dist/Button/TextButton.d.ts +18 -17
  48. package/dist/Button/shared/InlineIconButton.d.ts +13 -12
  49. package/dist/Button/shared/styles.d.ts +15 -10
  50. package/dist/Button/shared/variants.d.ts +6 -6
  51. package/dist/ButtonBase/ButtonBase.d.ts +9 -7
  52. package/dist/Card/elements.d.ts +4 -2
  53. package/dist/Card/styles.d.ts +2 -2
  54. package/dist/ConnectedForm/ConnectedInputs/ConnectedNestedCheckboxes/utils.d.ts +1 -0
  55. package/dist/ConnectedForm/utils.d.ts +6 -6
  56. package/dist/ContentContainer/index.d.ts +4 -3
  57. package/dist/DataList/Tables/Rows/elements.d.ts +2 -1
  58. package/dist/DataList/hooks/useListControls.d.ts +2 -1
  59. package/dist/DataList/hooks/useListState.d.ts +1 -0
  60. package/dist/Disclosure/elements.d.ts +58 -57
  61. package/dist/Disclosure/helpers.d.ts +4 -4
  62. package/dist/Disclosure/types.d.ts +1 -0
  63. package/dist/Drawer/index.d.ts +1 -0
  64. package/dist/FeatureShimmer/index.d.ts +1 -0
  65. package/dist/Form/SelectDropdown/elements/constants.d.ts +1 -0
  66. package/dist/Form/SelectDropdown/elements/containers.d.ts +1 -0
  67. package/dist/Form/SelectDropdown/styles.d.ts +2 -2
  68. package/dist/Form/SelectDropdown/utils.d.ts +2 -2
  69. package/dist/Form/__fixtures__/utils.d.ts +1 -0
  70. package/dist/Form/elements/Form.d.ts +4 -4
  71. package/dist/Form/elements/FormError.d.ts +1 -1
  72. package/dist/Form/elements/FormGroup.d.ts +4 -4
  73. package/dist/Form/elements/FormGroupDescription.d.ts +4 -3
  74. package/dist/Form/elements/FormGroupLabel.d.ts +2 -2
  75. package/dist/Form/elements/FormGroupLabel.js +2 -2
  76. package/dist/Form/inputs/Input.d.ts +8 -4
  77. package/dist/Form/inputs/Radio.d.ts +8 -8
  78. package/dist/Form/inputs/Select.d.ts +2 -2
  79. package/dist/Form/inputs/Select.js +6 -5
  80. package/dist/Form/inputs/TextArea.d.ts +2 -2
  81. package/dist/Form/styles/Checkbox-styles.d.ts +16 -8
  82. package/dist/Form/styles/Radio-styles.d.ts +8 -4
  83. package/dist/Form/styles/shared-system-props.d.ts +12 -7
  84. package/dist/GridForm/GridFormButtons/index.d.ts +18 -18
  85. package/dist/GridForm/GridFormInputGroup/__fixtures__/assertions.d.ts +2 -2
  86. package/dist/GridForm/GridFormSections/GridFormSectionBreak.d.ts +2 -2
  87. package/dist/HiddenText/index.d.ts +3 -2
  88. package/dist/InternalFloatingCard/InternalFloatingCard.d.ts +3 -3
  89. package/dist/Layout/Column.d.ts +4 -3
  90. package/dist/Layout/LayoutGrid.d.ts +3 -2
  91. package/dist/List/ListProvider.d.ts +1 -0
  92. package/dist/List/elements.d.ts +40 -28
  93. package/dist/List/hooks.d.ts +1 -0
  94. package/dist/Menu/Menu.d.ts +3 -2
  95. package/dist/Menu/MenuContext.d.ts +1 -0
  96. package/dist/Menu/elements.d.ts +11 -11
  97. package/dist/Modals/elements.d.ts +4 -3
  98. package/dist/Pagination/AnimatedPaginationButtons.d.ts +37 -3
  99. package/dist/Pagination/EllipsisButton.d.ts +52 -19
  100. package/dist/Pagination/PaginationButton.d.ts +30 -30
  101. package/dist/Pagination/styles.d.ts +4 -4
  102. package/dist/Pagination/utils.d.ts +5 -5
  103. package/dist/Popover/Popover.d.ts +1 -0
  104. package/dist/Popover/elements.d.ts +17 -16
  105. package/dist/Popover/styles/base.d.ts +2 -2
  106. package/dist/Popover/styles/beak.d.ts +1 -1
  107. package/dist/Popover/styles/variants.d.ts +6 -6
  108. package/dist/Popover/utils.d.ts +1 -1
  109. package/dist/PopoverContainer/hooks.d.ts +2 -2
  110. package/dist/PopoverContainer/utils.d.ts +1 -1
  111. package/dist/SkipToContent/index.d.ts +2 -2
  112. package/dist/Tabs/TabButton.d.ts +10 -9
  113. package/dist/Tabs/TabNav.d.ts +3 -2
  114. package/dist/Tabs/TabNavLink.d.ts +8 -8
  115. package/dist/Tabs/TabPanels.d.ts +3 -2
  116. package/dist/Tabs/TabProvider.d.ts +1 -0
  117. package/dist/Tabs/styles.d.ts +2 -2
  118. package/dist/Tag/elements.d.ts +42 -41
  119. package/dist/Tag/styles.d.ts +22 -12
  120. package/dist/Tip/InfoTip/InfoTipButton.d.ts +20 -20
  121. package/dist/Tip/InfoTip/index.d.ts +1 -0
  122. package/dist/Tip/InfoTip/styles.d.ts +11 -8
  123. package/dist/Tip/PreviewTip/elements.d.ts +17 -16
  124. package/dist/Tip/PreviewTip/utils.d.ts +1 -1
  125. package/dist/Tip/ToolTip/elements.d.ts +4 -3
  126. package/dist/Tip/ToolTip/index.d.ts +1 -0
  127. package/dist/Tip/__tests__/helpers.d.ts +4 -4
  128. package/dist/Tip/shared/InlineTip.d.ts +1 -0
  129. package/dist/Tip/shared/elements.d.ts +20 -19
  130. package/dist/Tip/shared/styles/composeVariantsUtils.d.ts +2 -2
  131. package/dist/Tip/shared/styles/styles.d.ts +4 -4
  132. package/dist/Tip/shared/utils.d.ts +1 -0
  133. package/dist/Toggle/elements.d.ts +12 -11
  134. package/dist/Toggle/utils.d.ts +1 -1
  135. package/dist/Typography/Text.d.ts +9 -8
  136. package/dist/Video/lib/ReactPlayer.d.ts +3 -2
  137. package/dist/Video/lib/VideoLayout.d.ts +1 -0
  138. package/dist/index.d.ts +1 -0
  139. package/dist/index.js +1 -0
  140. package/dist/utils/types.d.ts +1 -0
  141. package/package.json +8 -7
@@ -0,0 +1,959 @@
1
+ /// <reference types="react" />
2
+ /// <reference types="react" />
3
+ export declare const TotalValueLabelsHoverTarget: import("@emotion/styled").StyledComponent<{
4
+ theme?: import("@emotion/react").Theme | undefined;
5
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
6
+ } & import("../../Box").FlexBoxProps & Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | keyof import("react").ClassAttributes<HTMLDivElement> | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & {
7
+ theme?: import("@emotion/react").Theme | undefined;
8
+ }, {}, {}>;
9
+ export declare const CategoryLabel: import("@emotion/styled").StyledComponent<(((Omit<{
10
+ theme?: import("@emotion/react").Theme | undefined;
11
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
12
+ } & import("../..").TextTruncateProps & Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof import("react").ClassAttributes<HTMLSpanElement>>, "ref"> | Omit<{
13
+ theme?: import("@emotion/react").Theme | undefined;
14
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
15
+ } & import("../..").TextNoTruncateProps & Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof import("react").ClassAttributes<HTMLSpanElement>>, "ref">) & import("react").RefAttributes<HTMLSpanElement>) & {
16
+ theme?: import("@emotion/react").Theme | undefined;
17
+ }) & {
18
+ theme?: import("@emotion/react").Theme | undefined;
19
+ }, {}, {}>;
20
+ export declare const RowWrapper: import("@emotion/styled").StyledComponent<{
21
+ theme?: import("@emotion/react").Theme | undefined;
22
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
23
+ } & {
24
+ theme?: import("@emotion/react").Theme | undefined;
25
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
26
+ export declare const RowButton: import("@emotion/styled").StyledComponent<{
27
+ theme?: import("@emotion/react").Theme | undefined;
28
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
29
+ } & {
30
+ theme?: import("@emotion/react").Theme | undefined;
31
+ }, Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "disabled" | "name" | "form" | "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "type" | keyof import("react").ClassAttributes<HTMLButtonElement> | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value">, {}>;
32
+ export declare const RowAnchor: import("@emotion/styled").StyledComponent<{
33
+ theme?: import("@emotion/react").Theme | undefined;
34
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
35
+ } & {
36
+ theme?: import("@emotion/react").Theme | undefined;
37
+ }, Pick<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "media" | "target" | "type" | "href" | keyof import("react").ClassAttributes<HTMLAnchorElement> | "download" | "hrefLang" | "ping" | "referrerPolicy">, {}>;
38
+ export declare const BarWrapper: import("@emotion/styled").StyledComponent<{
39
+ theme?: import("@emotion/react").Theme | undefined;
40
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
41
+ } & import("../../Box").FlexBoxProps & Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "slot" | "style" | "title" | "dir" | "children" | "className" | "aria-hidden" | "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag" | keyof import("react").ClassAttributes<HTMLDivElement> | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & {
42
+ theme?: import("@emotion/react").Theme | undefined;
43
+ }, {}, {}>;
44
+ export declare const Bar: import("@emotion/styled").StyledComponent<{
45
+ color?: import("@codecademy/variance/dist/types/config").Scale<{
46
+ readonly property: "color";
47
+ readonly scale: "colors";
48
+ }>;
49
+ fontSize?: import("@codecademy/variance/dist/types/config").Scale<{
50
+ readonly property: "fontSize";
51
+ readonly scale: "fontSize";
52
+ }>;
53
+ fontFamily?: import("@codecademy/variance/dist/types/config").Scale<{
54
+ readonly property: "fontFamily";
55
+ readonly scale: "fontFamily";
56
+ }>;
57
+ lineHeight?: import("@codecademy/variance/dist/types/config").Scale<{
58
+ readonly property: "lineHeight";
59
+ readonly scale: "lineHeight";
60
+ }>;
61
+ fontWeight?: import("@codecademy/variance/dist/types/config").Scale<{
62
+ readonly property: "fontWeight";
63
+ readonly scale: "fontWeight";
64
+ }>;
65
+ background?: import("@codecademy/variance/dist/types/config").Scale<{
66
+ readonly property: "background";
67
+ }>;
68
+ border?: import("@codecademy/variance/dist/types/config").Scale<{
69
+ readonly property: "border";
70
+ readonly scale: "borders";
71
+ }>;
72
+ p?: import("@codecademy/variance/dist/types/config").Scale<{
73
+ readonly property: "padding";
74
+ readonly scale: "spacing";
75
+ }>;
76
+ slot?: string | undefined;
77
+ title?: string | undefined;
78
+ center?: boolean | undefined;
79
+ dir?: string | undefined;
80
+ className?: string | undefined;
81
+ height?: import("@codecademy/variance/dist/types/config").Scale<{
82
+ readonly property: {
83
+ readonly physical: "height";
84
+ readonly logical: "blockSize";
85
+ };
86
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
87
+ readonly transform: (value: string | number) => string | 0;
88
+ }>;
89
+ width?: import("@codecademy/variance/dist/types/config").Scale<{
90
+ readonly property: {
91
+ readonly physical: "width";
92
+ readonly logical: "inlineSize";
93
+ };
94
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
95
+ readonly transform: (value: string | number) => string | 0;
96
+ }>;
97
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
98
+ ref?: import("react").LegacyRef<HTMLDivElement> | undefined;
99
+ key?: import("react").Key | null | undefined;
100
+ defaultChecked?: boolean | undefined;
101
+ defaultValue?: string | number | readonly string[] | undefined;
102
+ suppressContentEditableWarning?: boolean | undefined;
103
+ suppressHydrationWarning?: boolean | undefined;
104
+ accessKey?: string | undefined;
105
+ autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
106
+ autoFocus?: boolean | undefined;
107
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
108
+ contextMenu?: string | undefined;
109
+ draggable?: (boolean | "false" | "true") | undefined;
110
+ enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
111
+ hidden?: boolean | undefined;
112
+ id?: string | undefined;
113
+ lang?: string | undefined;
114
+ nonce?: string | undefined;
115
+ spellCheck?: (boolean | "false" | "true") | undefined;
116
+ tabIndex?: number | undefined;
117
+ translate?: "no" | "yes" | undefined;
118
+ radioGroup?: string | undefined;
119
+ role?: import("react").AriaRole | undefined;
120
+ about?: string | undefined;
121
+ content?: string | undefined;
122
+ datatype?: string | undefined;
123
+ inlist?: any;
124
+ prefix?: string | undefined;
125
+ property?: string | undefined;
126
+ rel?: string | undefined;
127
+ resource?: string | undefined;
128
+ rev?: string | undefined;
129
+ typeof?: string | undefined;
130
+ vocab?: string | undefined;
131
+ autoCorrect?: string | undefined;
132
+ autoSave?: string | undefined;
133
+ itemProp?: string | undefined;
134
+ itemScope?: boolean | undefined;
135
+ itemType?: string | undefined;
136
+ itemID?: string | undefined;
137
+ itemRef?: string | undefined;
138
+ results?: number | undefined;
139
+ security?: string | undefined;
140
+ unselectable?: "off" | "on" | undefined;
141
+ inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
142
+ is?: string | undefined;
143
+ exportparts?: string | undefined;
144
+ part?: string | undefined;
145
+ "aria-activedescendant"?: string | undefined;
146
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
147
+ "aria-autocomplete"?: "none" | "inline" | "both" | "list" | undefined;
148
+ "aria-braillelabel"?: string | undefined;
149
+ "aria-brailleroledescription"?: string | undefined;
150
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
151
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
152
+ "aria-colcount"?: number | undefined;
153
+ "aria-colindex"?: number | undefined;
154
+ "aria-colindextext"?: string | undefined;
155
+ "aria-colspan"?: number | undefined;
156
+ "aria-controls"?: string | undefined;
157
+ "aria-current"?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
158
+ "aria-describedby"?: string | undefined;
159
+ "aria-description"?: string | undefined;
160
+ "aria-details"?: string | undefined;
161
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
162
+ "aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
163
+ "aria-errormessage"?: string | undefined;
164
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
165
+ "aria-flowto"?: string | undefined;
166
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
167
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
168
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
169
+ "aria-keyshortcuts"?: string | undefined;
170
+ "aria-label"?: string | undefined;
171
+ "aria-labelledby"?: string | undefined;
172
+ "aria-level"?: number | undefined;
173
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
174
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
175
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
176
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
177
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
178
+ "aria-owns"?: string | undefined;
179
+ "aria-placeholder"?: string | undefined;
180
+ "aria-posinset"?: number | undefined;
181
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
182
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
183
+ "aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
184
+ "aria-required"?: (boolean | "false" | "true") | undefined;
185
+ "aria-roledescription"?: string | undefined;
186
+ "aria-rowcount"?: number | undefined;
187
+ "aria-rowindex"?: number | undefined;
188
+ "aria-rowindextext"?: string | undefined;
189
+ "aria-rowspan"?: number | undefined;
190
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
191
+ "aria-setsize"?: number | undefined;
192
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
193
+ "aria-valuemax"?: number | undefined;
194
+ "aria-valuemin"?: number | undefined;
195
+ "aria-valuenow"?: number | undefined;
196
+ "aria-valuetext"?: string | undefined;
197
+ dangerouslySetInnerHTML?: {
198
+ __html: string | TrustedHTML;
199
+ } | undefined;
200
+ onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
201
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
202
+ onCut?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
203
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
204
+ onPaste?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
205
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
206
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
207
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
208
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
209
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
210
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
211
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
212
+ onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
213
+ onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
214
+ onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
215
+ onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
216
+ onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
217
+ onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
218
+ onBeforeInput?: import("react").InputEventHandler<HTMLDivElement> | undefined;
219
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
220
+ onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
221
+ onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
222
+ onReset?: import("react").FormEventHandler<HTMLDivElement> | undefined;
223
+ onResetCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
224
+ onSubmit?: import("react").FormEventHandler<HTMLDivElement> | undefined;
225
+ onSubmitCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
226
+ onInvalid?: import("react").FormEventHandler<HTMLDivElement> | undefined;
227
+ onInvalidCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
228
+ onLoad?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
229
+ onLoadCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
230
+ onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
231
+ onErrorCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
232
+ onKeyDown?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
233
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
234
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
235
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
236
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
237
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
238
+ onAbort?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
239
+ onAbortCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
240
+ onCanPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
241
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
242
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
243
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
244
+ onDurationChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
245
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
246
+ onEmptied?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
247
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
248
+ onEncrypted?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
249
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
250
+ onEnded?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
251
+ onEndedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
252
+ onLoadedData?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
253
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
254
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
255
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
256
+ onLoadStart?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
257
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
258
+ onPause?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
259
+ onPauseCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
260
+ onPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
261
+ onPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
262
+ onPlaying?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
263
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
264
+ onProgress?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
265
+ onProgressCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
266
+ onRateChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
267
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
268
+ onSeeked?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
269
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
270
+ onSeeking?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
271
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
272
+ onStalled?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
273
+ onStalledCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
274
+ onSuspend?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
275
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
276
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
277
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
278
+ onVolumeChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
279
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
280
+ onWaiting?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
281
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
282
+ onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
283
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
284
+ onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
285
+ onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
286
+ onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
287
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
288
+ onDoubleClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
289
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
290
+ onDragCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
291
+ onDragEndCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
292
+ onDragEnter?: import("react").DragEventHandler<HTMLDivElement> | undefined;
293
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
294
+ onDragExit?: import("react").DragEventHandler<HTMLDivElement> | undefined;
295
+ onDragExitCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
296
+ onDragLeave?: import("react").DragEventHandler<HTMLDivElement> | undefined;
297
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
298
+ onDragOver?: import("react").DragEventHandler<HTMLDivElement> | undefined;
299
+ onDragOverCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
300
+ onDragStartCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
301
+ onDrop?: import("react").DragEventHandler<HTMLDivElement> | undefined;
302
+ onDropCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
303
+ onMouseDown?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
304
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
305
+ onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
306
+ onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
307
+ onMouseMove?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
308
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
309
+ onMouseOut?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
310
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
311
+ onMouseOver?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
312
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
313
+ onMouseUp?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
314
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
315
+ onSelect?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
316
+ onSelectCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
317
+ onTouchCancel?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
318
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
319
+ onTouchEnd?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
320
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
321
+ onTouchMove?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
322
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
323
+ onTouchStart?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
324
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
325
+ onPointerDown?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
326
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
327
+ onPointerMove?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
328
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
329
+ onPointerUp?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
330
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
331
+ onPointerCancel?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
332
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
333
+ onPointerEnter?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
334
+ onPointerLeave?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
335
+ onPointerOver?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
336
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
337
+ onPointerOut?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
338
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
339
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
340
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
341
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
342
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
343
+ onScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
344
+ onScrollCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
345
+ onWheel?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
346
+ onWheelCapture?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
347
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
348
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
349
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
350
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
351
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
352
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
353
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
354
+ alignContent?: "center" | "initial" | "inherit" | "normal" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | "baseline" | "end" | "start" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignContent | undefined) | undefined> | undefined;
355
+ alignItems?: "center" | "initial" | "inherit" | "normal" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | "baseline" | "end" | "start" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | "stretch" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignItems | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignItems | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignItems | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignItems | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignItems | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignItems | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignItems | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignItems | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignItems | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignItems | undefined) | undefined> | undefined;
356
+ alignSelf?: "center" | "initial" | "inherit" | "normal" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | "auto" | "baseline" | "end" | "start" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | "stretch" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignSelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignSelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignSelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignSelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.AlignSelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.AlignSelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.AlignSelf | undefined) | undefined> | undefined;
357
+ backgroundImage?: import("@codecademy/variance/dist/types/config").Scale<{
358
+ readonly property: "backgroundImage";
359
+ }>;
360
+ backgroundRepeat?: import("@codecademy/variance/dist/types/config").Scale<{
361
+ readonly property: "backgroundRepeat";
362
+ }>;
363
+ backgroundSize?: import("@codecademy/variance/dist/types/config").Scale<{
364
+ readonly property: "backgroundSize";
365
+ }>;
366
+ bottom?: import("@codecademy/variance/dist/types/config").Scale<{
367
+ readonly property: {
368
+ readonly physical: "bottom";
369
+ readonly logical: "insetBlockEnd";
370
+ };
371
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
372
+ readonly transform: (value: string | number) => string | 0;
373
+ }>;
374
+ boxShadow?: import("@codecademy/variance/dist/types/config").Scale<{
375
+ readonly property: "boxShadow";
376
+ }>;
377
+ columnGap?: import("@codecademy/variance/dist/types/config").Scale<{
378
+ readonly property: "columnGap";
379
+ readonly scale: "spacing";
380
+ }>;
381
+ containerType?: import("@codecademy/variance/dist/types/config").Scale<{
382
+ readonly property: "containerType";
383
+ }>;
384
+ direction?: import("@codecademy/variance/dist/types/config").Scale<{
385
+ readonly property: "direction";
386
+ }>;
387
+ display?: import("@codecademy/variance/dist/types/config").Scale<{
388
+ readonly property: "display";
389
+ }>;
390
+ flexBasis?: 0 | "initial" | "inherit" | "content" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | "-moz-fit-content" | "-moz-max-content" | "-moz-min-content" | "auto" | "fit-content" | "max-content" | "min-content" | "-webkit-auto" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexBasis<import("@codecademy/variance/dist/types/properties").DefaultCSSPropertyValue> | undefined) | undefined> | undefined;
391
+ flexDirection?: import("@codecademy/variance/dist/types/config").Scale<{
392
+ readonly property: "flexDirection";
393
+ }>;
394
+ flexGrow?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexGrow | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.FlexGrow | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexGrow | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.FlexGrow | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexGrow | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexGrow | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.FlexGrow | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexGrow | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.FlexGrow | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexGrow | undefined) | undefined> | undefined;
395
+ flexShrink?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexShrink | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.FlexShrink | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexShrink | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.FlexShrink | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexShrink | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexShrink | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.FlexShrink | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexShrink | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.FlexShrink | ((theme: import("@emotion/react").Theme) => import("csstype").Property.FlexShrink | undefined) | undefined> | undefined;
396
+ flexWrap?: import("@codecademy/variance/dist/types/config").Scale<{
397
+ readonly property: "flexWrap";
398
+ }>;
399
+ fontStyle?: import("@codecademy/variance/dist/types/config").Scale<{
400
+ readonly property: "fontStyle";
401
+ }>;
402
+ gridAutoColumns?: import("@codecademy/variance/dist/types/config").Scale<{
403
+ readonly property: "gridAutoColumns";
404
+ }>;
405
+ gridAutoFlow?: import("@codecademy/variance/dist/types/config").Scale<{
406
+ readonly property: "gridAutoFlow";
407
+ }>;
408
+ gridAutoRows?: import("@codecademy/variance/dist/types/config").Scale<{
409
+ readonly property: "gridAutoRows";
410
+ }>;
411
+ gridColumnEnd?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | "auto" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnEnd | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridColumnEnd | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnEnd | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridColumnEnd | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnEnd | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnEnd | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridColumnEnd | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnEnd | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridColumnEnd | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnEnd | undefined) | undefined> | undefined;
412
+ gridColumnStart?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | "auto" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnStart | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridColumnStart | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnStart | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridColumnStart | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnStart | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnStart | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridColumnStart | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnStart | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridColumnStart | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumnStart | undefined) | undefined> | undefined;
413
+ gridRowEnd?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | "auto" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowEnd | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridRowEnd | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowEnd | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridRowEnd | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowEnd | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowEnd | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridRowEnd | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowEnd | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridRowEnd | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowEnd | undefined) | undefined> | undefined;
414
+ gridRowStart?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | "auto" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowStart | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridRowStart | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowStart | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridRowStart | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowStart | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowStart | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridRowStart | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowStart | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridRowStart | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRowStart | undefined) | undefined> | undefined;
415
+ gridTemplateAreas?: import("@codecademy/variance/dist/types/config").Scale<{
416
+ readonly property: "gridTemplateAreas";
417
+ }>;
418
+ gridTemplateColumns?: import("@codecademy/variance/dist/types/config").Scale<{
419
+ readonly property: "gridTemplateColumns";
420
+ }>;
421
+ gridTemplateRows?: import("@codecademy/variance/dist/types/config").Scale<{
422
+ readonly property: "gridTemplateRows";
423
+ }>;
424
+ justifyContent?: "center" | "initial" | "inherit" | "normal" | (string & {}) | "left" | "right" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "end" | "start" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyContent | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.JustifyContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyContent | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.JustifyContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyContent | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyContent | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.JustifyContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyContent | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.JustifyContent | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyContent | undefined) | undefined> | undefined;
425
+ justifyItems?: "center" | "initial" | "inherit" | "normal" | (string & {}) | "left" | "right" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "baseline" | "end" | "start" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | "stretch" | "legacy" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyItems | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.JustifyItems | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyItems | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.JustifyItems | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyItems | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyItems | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.JustifyItems | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyItems | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.JustifyItems | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifyItems | undefined) | undefined> | undefined;
426
+ justifySelf?: "center" | "initial" | "inherit" | "normal" | (string & {}) | "left" | "right" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "auto" | "baseline" | "end" | "start" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | "stretch" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.JustifySelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.JustifySelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.JustifySelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.JustifySelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.JustifySelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.JustifySelf | ((theme: import("@emotion/react").Theme) => import("csstype").Property.JustifySelf | undefined) | undefined> | undefined;
427
+ left?: import("@codecademy/variance/dist/types/config").Scale<{
428
+ readonly property: {
429
+ readonly physical: "left";
430
+ readonly logical: "insetInlineStart";
431
+ };
432
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
433
+ readonly transform: (value: string | number) => string | 0;
434
+ }>;
435
+ letterSpacing?: import("@codecademy/variance/dist/types/config").Scale<{
436
+ readonly property: "letterSpacing";
437
+ }>;
438
+ listStyleImage?: import("@codecademy/variance/dist/types/config").Scale<{
439
+ readonly property: "listStyleImage";
440
+ }>;
441
+ listStylePosition?: import("@codecademy/variance/dist/types/config").Scale<{
442
+ readonly property: "listStylePosition";
443
+ }>;
444
+ listStyleType?: import("@codecademy/variance/dist/types/config").Scale<{
445
+ readonly property: "listStyleType";
446
+ }>;
447
+ maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
448
+ readonly property: {
449
+ readonly physical: "maxHeight";
450
+ readonly logical: "maxBlockSize";
451
+ };
452
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
453
+ readonly transform: (value: string | number) => string | 0;
454
+ }>;
455
+ maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
456
+ readonly property: {
457
+ readonly physical: "maxWidth";
458
+ readonly logical: "maxInlineSize";
459
+ };
460
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
461
+ readonly transform: (value: string | number) => string | 0;
462
+ }>;
463
+ minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
464
+ readonly property: {
465
+ readonly physical: "minHeight";
466
+ readonly logical: "minBlockSize";
467
+ };
468
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
469
+ readonly transform: (value: string | number) => string | 0;
470
+ }>;
471
+ minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
472
+ readonly property: {
473
+ readonly physical: "minWidth";
474
+ readonly logical: "minInlineSize";
475
+ };
476
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
477
+ readonly transform: (value: string | number) => string | 0;
478
+ }>;
479
+ opacity?: import("@codecademy/variance/dist/types/config").Scale<{
480
+ readonly property: "opacity";
481
+ }>;
482
+ order?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | ((theme: import("@emotion/react").Theme) => import("csstype").Property.Order | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.Order | ((theme: import("@emotion/react").Theme) => import("csstype").Property.Order | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.Order | ((theme: import("@emotion/react").Theme) => import("csstype").Property.Order | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.Order | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.Order | ((theme: import("@emotion/react").Theme) => import("csstype").Property.Order | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.Order | ((theme: import("@emotion/react").Theme) => import("csstype").Property.Order | undefined) | undefined> | undefined;
483
+ overflowX?: import("@codecademy/variance/dist/types/config").Scale<{
484
+ readonly property: {
485
+ readonly physical: "overflowX";
486
+ readonly logical: "overflowInline";
487
+ };
488
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
489
+ }>;
490
+ overflowY?: import("@codecademy/variance/dist/types/config").Scale<{
491
+ readonly property: {
492
+ readonly physical: "overflowY";
493
+ readonly logical: "overflowBlock";
494
+ };
495
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
496
+ }>;
497
+ position?: import("@codecademy/variance/dist/types/config").Scale<{
498
+ readonly property: "position";
499
+ }>;
500
+ right?: import("@codecademy/variance/dist/types/config").Scale<{
501
+ readonly property: {
502
+ readonly physical: "right";
503
+ readonly logical: "insetInlineEnd";
504
+ };
505
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
506
+ readonly transform: (value: string | number) => string | 0;
507
+ }>;
508
+ rowGap?: import("@codecademy/variance/dist/types/config").Scale<{
509
+ readonly property: "rowGap";
510
+ readonly scale: "spacing";
511
+ }>;
512
+ textAlign?: import("@codecademy/variance/dist/types/config").Scale<{
513
+ readonly property: "textAlign";
514
+ }>;
515
+ textShadow?: import("@codecademy/variance/dist/types/config").Scale<{
516
+ readonly property: "textShadow";
517
+ }>;
518
+ textTransform?: import("@codecademy/variance/dist/types/config").Scale<{
519
+ readonly property: "textTransform";
520
+ }>;
521
+ top?: import("@codecademy/variance/dist/types/config").Scale<{
522
+ readonly property: {
523
+ readonly physical: "top";
524
+ readonly logical: "insetBlockStart";
525
+ };
526
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
527
+ readonly transform: (value: string | number) => string | 0;
528
+ }>;
529
+ verticalAlign?: import("@codecademy/variance/dist/types/config").Scale<{
530
+ readonly property: "verticalAlign";
531
+ }>;
532
+ whiteSpace?: import("@codecademy/variance/dist/types/config").Scale<{
533
+ readonly property: "whiteSpace";
534
+ }>;
535
+ zIndex?: import("@codecademy/variance/dist/types/config").Scale<{
536
+ readonly property: "zIndex";
537
+ }>;
538
+ backgroundPosition?: import("@codecademy/variance/dist/types/config").Scale<{
539
+ readonly property: "backgroundPosition";
540
+ }>;
541
+ borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
542
+ readonly property: {
543
+ readonly physical: "borderBottom";
544
+ readonly logical: "borderBlockEnd";
545
+ };
546
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
547
+ readonly scale: "borders";
548
+ }>;
549
+ borderColor?: import("@codecademy/variance/dist/types/config").Scale<{
550
+ readonly property: "borderColor";
551
+ readonly scale: "colors";
552
+ }>;
553
+ borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
554
+ readonly property: {
555
+ readonly physical: "borderLeft";
556
+ readonly logical: "borderInlineStart";
557
+ };
558
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
559
+ readonly scale: "borders";
560
+ }>;
561
+ borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
562
+ readonly property: "borderRadius";
563
+ readonly scale: "borderRadii";
564
+ }>;
565
+ borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
566
+ readonly property: {
567
+ readonly physical: "borderRight";
568
+ readonly logical: "borderInlineEnd";
569
+ };
570
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
571
+ readonly scale: "borders";
572
+ }>;
573
+ borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
574
+ readonly property: "borderStyle";
575
+ }>;
576
+ borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
577
+ readonly property: {
578
+ readonly physical: "borderTop";
579
+ readonly logical: "borderBlockStart";
580
+ };
581
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
582
+ readonly scale: "borders";
583
+ }>;
584
+ borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
585
+ readonly property: "borderWidth";
586
+ }>;
587
+ flex?: import("@codecademy/variance/dist/types/config").Scale<{
588
+ readonly property: "flex";
589
+ }>;
590
+ gap?: import("@codecademy/variance/dist/types/config").Scale<{
591
+ readonly property: "gap";
592
+ readonly scale: "spacing";
593
+ }>;
594
+ gridArea?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | "auto" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridArea | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridArea | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridArea | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridArea | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridArea | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridArea | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridArea | undefined) | undefined> | undefined;
595
+ gridColumn?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | "auto" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumn | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridColumn | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumn | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridColumn | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumn | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumn | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridColumn | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumn | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridColumn | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridColumn | undefined) | undefined> | undefined;
596
+ gridRow?: "initial" | "inherit" | (string & {}) | "-moz-initial" | "revert" | "revert-layer" | "unset" | (number & {}) | "auto" | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRow | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridRow | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRow | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridRow | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRow | undefined) | undefined> | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRow | undefined) | import("@codecademy/variance").BreakpointMap<import("csstype").Property.GridRow | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRow | undefined) | undefined> | import("@codecademy/variance").BreakpointArray<import("csstype").Property.GridRow | ((theme: import("@emotion/react").Theme) => import("csstype").Property.GridRow | undefined) | undefined> | undefined;
597
+ inset?: import("@codecademy/variance/dist/types/config").Scale<{
598
+ readonly property: "inset";
599
+ readonly properties: {
600
+ readonly physical: readonly ["top", "right", "bottom", "left"];
601
+ readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
602
+ };
603
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
604
+ readonly transform: (value: string | number) => string | 0;
605
+ }>;
606
+ listStyle?: import("@codecademy/variance/dist/types/config").Scale<{
607
+ readonly property: "listStyle";
608
+ }>;
609
+ overflow?: import("@codecademy/variance/dist/types/config").Scale<{
610
+ readonly property: "overflow";
611
+ }>;
612
+ textDecoration?: import("@codecademy/variance/dist/types/config").Scale<{
613
+ readonly property: "textDecoration";
614
+ }>;
615
+ inline?: boolean | undefined;
616
+ column?: boolean | undefined;
617
+ row?: boolean | undefined;
618
+ wrap?: boolean | undefined;
619
+ px?: import("@codecademy/variance/dist/types/config").Scale<{
620
+ readonly property: "padding";
621
+ readonly properties: {
622
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
623
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
624
+ };
625
+ readonly scale: "spacing";
626
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
627
+ }>;
628
+ py?: import("@codecademy/variance/dist/types/config").Scale<{
629
+ readonly property: "padding";
630
+ readonly properties: {
631
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
632
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
633
+ };
634
+ readonly scale: "spacing";
635
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
636
+ }>;
637
+ pt?: import("@codecademy/variance/dist/types/config").Scale<{
638
+ readonly property: {
639
+ readonly physical: "paddingTop";
640
+ readonly logical: "paddingBlockStart";
641
+ };
642
+ readonly scale: "spacing";
643
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
644
+ }>;
645
+ pb?: import("@codecademy/variance/dist/types/config").Scale<{
646
+ readonly property: {
647
+ readonly physical: "paddingBottom";
648
+ readonly logical: "paddingBlockEnd";
649
+ };
650
+ readonly scale: "spacing";
651
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
652
+ }>;
653
+ pr?: import("@codecademy/variance/dist/types/config").Scale<{
654
+ readonly property: {
655
+ readonly physical: "paddingRight";
656
+ readonly logical: "paddingInlineEnd";
657
+ };
658
+ readonly scale: "spacing";
659
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
660
+ }>;
661
+ pl?: import("@codecademy/variance/dist/types/config").Scale<{
662
+ readonly property: {
663
+ readonly physical: "paddingLeft";
664
+ readonly logical: "paddingInlineStart";
665
+ };
666
+ readonly scale: "spacing";
667
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
668
+ }>;
669
+ m?: import("@codecademy/variance/dist/types/config").Scale<{
670
+ readonly property: "margin";
671
+ readonly scale: "spacing";
672
+ }>;
673
+ mx?: import("@codecademy/variance/dist/types/config").Scale<{
674
+ readonly property: "margin";
675
+ readonly properties: {
676
+ readonly physical: readonly ["marginLeft", "marginRight"];
677
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
678
+ };
679
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
680
+ readonly scale: "spacing";
681
+ }>;
682
+ my?: import("@codecademy/variance/dist/types/config").Scale<{
683
+ readonly property: "margin";
684
+ readonly properties: {
685
+ readonly physical: readonly ["marginTop", "marginBottom"];
686
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
687
+ };
688
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
689
+ readonly scale: "spacing";
690
+ }>;
691
+ mt?: import("@codecademy/variance/dist/types/config").Scale<{
692
+ readonly property: {
693
+ readonly physical: "marginTop";
694
+ readonly logical: "marginBlockStart";
695
+ };
696
+ readonly scale: "spacing";
697
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
698
+ }>;
699
+ mb?: import("@codecademy/variance/dist/types/config").Scale<{
700
+ readonly property: {
701
+ readonly physical: "marginBottom";
702
+ readonly logical: "marginBlockEnd";
703
+ };
704
+ readonly scale: "spacing";
705
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
706
+ }>;
707
+ mr?: import("@codecademy/variance/dist/types/config").Scale<{
708
+ readonly property: {
709
+ readonly physical: "marginRight";
710
+ readonly logical: "marginInlineEnd";
711
+ };
712
+ readonly scale: "spacing";
713
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
714
+ }>;
715
+ ml?: import("@codecademy/variance/dist/types/config").Scale<{
716
+ readonly property: {
717
+ readonly physical: "marginLeft";
718
+ readonly logical: "marginInlineStart";
719
+ };
720
+ readonly scale: "spacing";
721
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
722
+ }>;
723
+ borderX?: import("@codecademy/variance/dist/types/config").Scale<{
724
+ readonly property: "border";
725
+ readonly properties: {
726
+ readonly physical: readonly ["borderLeft", "borderRight"];
727
+ readonly logical: readonly ["borderInlineStart", "borderInlineEnd"];
728
+ };
729
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
730
+ readonly scale: "borders";
731
+ }>;
732
+ borderY?: import("@codecademy/variance/dist/types/config").Scale<{
733
+ readonly property: "border";
734
+ readonly properties: {
735
+ readonly physical: readonly ["borderTop", "borderBottom"];
736
+ readonly logical: readonly ["borderBlockStart", "borderBlockEnd"];
737
+ };
738
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
739
+ readonly scale: "borders";
740
+ }>;
741
+ borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
742
+ readonly property: "borderWidth";
743
+ readonly properties: {
744
+ readonly physical: readonly ["borderLeftWidth", "borderRightWidth"];
745
+ readonly logical: readonly ["borderInlineStartWidth", "borderInlineEndWidth"];
746
+ };
747
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
748
+ }>;
749
+ borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
750
+ readonly property: "borderWidth";
751
+ readonly properties: {
752
+ readonly physical: readonly ["borderTopWidth", "borderBottomWidth"];
753
+ readonly logical: readonly ["borderBlockStartWidth", "borderBlockEndWidth"];
754
+ };
755
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
756
+ }>;
757
+ borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
758
+ readonly property: {
759
+ readonly physical: "borderLeftWidth";
760
+ readonly logical: "borderInlineStartWidth";
761
+ };
762
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
763
+ }>;
764
+ borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
765
+ readonly property: {
766
+ readonly physical: "borderRightWidth";
767
+ readonly logical: "borderInlineEndWidth";
768
+ };
769
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
770
+ }>;
771
+ borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
772
+ readonly property: {
773
+ readonly physical: "borderTopWidth";
774
+ readonly logical: "borderBlockStartWidth";
775
+ };
776
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
777
+ }>;
778
+ borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
779
+ readonly property: {
780
+ readonly physical: "borderBottomWidth";
781
+ readonly logical: "borderBlockEndWidth";
782
+ };
783
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
784
+ }>;
785
+ borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
786
+ readonly property: "borderRadius";
787
+ readonly properties: {
788
+ readonly physical: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
789
+ readonly logical: readonly ["borderStartStartRadius", "borderEndStartRadius"];
790
+ };
791
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
792
+ readonly scale: "borderRadii";
793
+ }>;
794
+ borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
795
+ readonly property: "borderRadius";
796
+ readonly properties: {
797
+ readonly physical: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
798
+ readonly logical: readonly ["borderStartStartRadius", "borderStartEndRadius"];
799
+ };
800
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
801
+ readonly scale: "borderRadii";
802
+ }>;
803
+ borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
804
+ readonly property: "borderRadius";
805
+ readonly properties: {
806
+ readonly physical: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
807
+ readonly logical: readonly ["borderEndStartRadius", "borderEndEndRadius"];
808
+ };
809
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
810
+ readonly scale: "borderRadii";
811
+ }>;
812
+ borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
813
+ readonly property: "borderRadius";
814
+ readonly properties: {
815
+ readonly physical: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
816
+ readonly logical: readonly ["borderStartEndRadius", "borderEndEndRadius"];
817
+ };
818
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
819
+ readonly scale: "borderRadii";
820
+ }>;
821
+ borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
822
+ readonly property: {
823
+ readonly physical: "borderTopLeftRadius";
824
+ readonly logical: "borderStartStartRadius";
825
+ };
826
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
827
+ readonly scale: "borderRadii";
828
+ }>;
829
+ borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
830
+ readonly property: {
831
+ readonly physical: "borderTopRightRadius";
832
+ readonly logical: "borderStartEndRadius";
833
+ };
834
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
835
+ readonly scale: "borderRadii";
836
+ }>;
837
+ borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
838
+ readonly property: {
839
+ readonly physical: "borderBottomRightRadius";
840
+ readonly logical: "borderEndEndRadius";
841
+ };
842
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
843
+ readonly scale: "borderRadii";
844
+ }>;
845
+ borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
846
+ readonly property: {
847
+ readonly physical: "borderBottomLeftRadius";
848
+ readonly logical: "borderEndStartRadius";
849
+ };
850
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
851
+ readonly scale: "borderRadii";
852
+ }>;
853
+ borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
854
+ readonly property: "borderStyle";
855
+ readonly properties: {
856
+ readonly physical: readonly ["borderLeftStyle", "borderRightStyle"];
857
+ readonly logical: readonly ["borderInlineStartStyle", "borderInlineEndStyle"];
858
+ };
859
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
860
+ }>;
861
+ borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
862
+ readonly property: "borderStyle";
863
+ readonly properties: {
864
+ readonly physical: readonly ["borderTopStyle", "borderBottomStyle"];
865
+ readonly logical: readonly ["borderBlockStartStyle", "borderBlockEndStyle"];
866
+ };
867
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
868
+ }>;
869
+ borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
870
+ readonly property: {
871
+ readonly physical: "borderLeftStyle";
872
+ readonly logical: "borderInlineStartStyle";
873
+ };
874
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
875
+ }>;
876
+ borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
877
+ readonly property: {
878
+ readonly physical: "borderRightStyle";
879
+ readonly logical: "borderInlineEndStyle";
880
+ };
881
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
882
+ }>;
883
+ borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
884
+ readonly property: {
885
+ readonly physical: "borderTopStyle";
886
+ readonly logical: "borderBlockStartStyle";
887
+ };
888
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
889
+ }>;
890
+ borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
891
+ readonly property: {
892
+ readonly physical: "borderBottomStyle";
893
+ readonly logical: "borderBlockEndStyle";
894
+ };
895
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
896
+ }>;
897
+ dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
898
+ readonly property: "width";
899
+ readonly properties: {
900
+ readonly physical: readonly ["width", "height"];
901
+ readonly logical: readonly ["inlineSize", "blockSize"];
902
+ };
903
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
904
+ readonly transform: (value: string | number) => string | 0;
905
+ }>;
906
+ textColor?: import("@codecademy/variance/dist/types/config").Scale<{
907
+ readonly property: "color";
908
+ readonly scale: "colors";
909
+ }>;
910
+ bg?: import("@codecademy/variance/dist/types/config").Scale<{
911
+ readonly property: "backgroundColor";
912
+ readonly scale: "colors";
913
+ }>;
914
+ borderColorX?: import("@codecademy/variance/dist/types/config").Scale<{
915
+ readonly property: "borderColor";
916
+ readonly properties: {
917
+ readonly physical: readonly ["borderLeftColor", "borderRightColor"];
918
+ readonly logical: readonly ["borderInlineStartColor", "borderInlineEndColor"];
919
+ };
920
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
921
+ readonly scale: "colors";
922
+ }>;
923
+ borderColorY?: import("@codecademy/variance/dist/types/config").Scale<{
924
+ readonly property: "borderColor";
925
+ readonly properties: {
926
+ readonly physical: readonly ["borderTopColor", "borderBottomColor"];
927
+ readonly logical: readonly ["borderBlockStartColor", "borderBlockEndColor"];
928
+ };
929
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
930
+ readonly scale: "colors";
931
+ }>;
932
+ borderColorLeft?: import("@codecademy/variance/dist/types/config").Scale<{
933
+ readonly property: "borderLeftColor";
934
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
935
+ readonly scale: "colors";
936
+ }>;
937
+ borderColorRight?: import("@codecademy/variance/dist/types/config").Scale<{
938
+ readonly property: "borderRightColor";
939
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
940
+ readonly scale: "colors";
941
+ }>;
942
+ borderColorTop?: import("@codecademy/variance/dist/types/config").Scale<{
943
+ readonly property: "borderTopColor";
944
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
945
+ readonly scale: "colors";
946
+ }>;
947
+ borderColorBottom?: import("@codecademy/variance/dist/types/config").Scale<{
948
+ readonly property: "borderBottomColor";
949
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
950
+ readonly scale: "colors";
951
+ }>;
952
+ theme?: import("@emotion/react").Theme | undefined;
953
+ fit?: boolean | undefined;
954
+ context?: boolean | undefined;
955
+ "no-select"?: boolean | undefined;
956
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
957
+ } & import("framer-motion").MotionProps & {
958
+ theme?: import("@emotion/react").Theme | undefined;
959
+ }, {}, {}>;