@aws-amplify/ui-react 2.5.0 → 2.6.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.
- package/README.md +23 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/internal.js +1 -1
- package/dist/esm/internal.js.map +1 -1
- package/dist/esm/styles.css +1 -1
- package/dist/esm/styles.css.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +30 -14
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/internal.js +1 -1
- package/dist/internal.js.map +1 -1
- package/dist/primitives.json +532 -0
- package/dist/styles.css +1 -1
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -161,7 +161,7 @@ declare type AuthenticatorContextValue = {
|
|
|
161
161
|
*
|
|
162
162
|
* https://xstate.js.org/docs/recipes/react.html#context-provider
|
|
163
163
|
*/
|
|
164
|
-
declare const AuthenticatorContext:
|
|
164
|
+
declare const AuthenticatorContext: React$1.Context<AuthenticatorContextValue>;
|
|
165
165
|
/**
|
|
166
166
|
* These are the "facades" that we provide, which contains contexts respective
|
|
167
167
|
* to current authenticator state.
|
|
@@ -1105,9 +1105,14 @@ interface TextFieldOptions extends FieldProps, FlexContainerStyleProps {
|
|
|
1105
1105
|
}
|
|
1106
1106
|
interface TextInputFieldProps extends TextFieldOptions, InputProps {
|
|
1107
1107
|
}
|
|
1108
|
-
interface
|
|
1108
|
+
interface TextAreaFieldMultilineProps extends TextFieldOptions, TextAreaProps {
|
|
1109
1109
|
}
|
|
1110
|
-
declare type TextFieldProps<Multiline extends boolean> = (Multiline extends true ?
|
|
1110
|
+
declare type TextFieldProps<Multiline extends boolean> = (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps) & {
|
|
1111
|
+
/**
|
|
1112
|
+
* @deprecated
|
|
1113
|
+
* Multiline functionality has been moved to TextAreaField and will be removed in next major release.
|
|
1114
|
+
* Please use TextAreaField instead of TextField for multiline text fields.
|
|
1115
|
+
*/
|
|
1111
1116
|
isMultiline?: Multiline;
|
|
1112
1117
|
};
|
|
1113
1118
|
|
|
@@ -1266,12 +1271,12 @@ interface SearchFieldProps extends TextInputFieldProps {
|
|
|
1266
1271
|
/**
|
|
1267
1272
|
* Provides ref access to search button DOM element
|
|
1268
1273
|
*/
|
|
1269
|
-
searchButtonRef?:
|
|
1274
|
+
searchButtonRef?: React$1.Ref<HTMLButtonElement>;
|
|
1270
1275
|
}
|
|
1271
1276
|
interface SearchFieldButtonProps extends Partial<FieldGroupIconButtonProps> {
|
|
1272
1277
|
}
|
|
1273
1278
|
declare type UseSearchFieldProps = Partial<SearchFieldProps> & {
|
|
1274
|
-
externalRef?:
|
|
1279
|
+
externalRef?: React$1.ForwardedRef<HTMLInputElement>;
|
|
1275
1280
|
};
|
|
1276
1281
|
|
|
1277
1282
|
declare type SliderOrientation = 'horizontal' | 'vertical';
|
|
@@ -1441,6 +1446,9 @@ interface TabItemProps extends BaseComponentProps, BaseStyleProps {
|
|
|
1441
1446
|
isDisabled?: boolean;
|
|
1442
1447
|
}
|
|
1443
1448
|
|
|
1449
|
+
interface TextAreaFieldProps extends FieldProps, FlexContainerStyleProps, TextAreaProps {
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1444
1452
|
interface ToggleButtonProps extends ButtonProps {
|
|
1445
1453
|
value?: string;
|
|
1446
1454
|
isPressed?: boolean;
|
|
@@ -1451,6 +1459,7 @@ interface ToggleButtonProps extends ButtonProps {
|
|
|
1451
1459
|
interface ToggleButtonGroupProps extends FlexProps, Pick<ToggleButtonProps, 'size' | 'variation'> {
|
|
1452
1460
|
children: React$1.ReactNode;
|
|
1453
1461
|
isExclusive?: boolean;
|
|
1462
|
+
isSelectionRequired?: boolean;
|
|
1454
1463
|
value: string | string[];
|
|
1455
1464
|
onChange: (value: string | string[]) => void;
|
|
1456
1465
|
}
|
|
@@ -4209,23 +4218,25 @@ declare const TabItem: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWith
|
|
|
4209
4218
|
|
|
4210
4219
|
declare const Text: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TextProps, "p">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "isTruncated"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
4211
4220
|
|
|
4221
|
+
declare const TextAreaField: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<TextAreaFieldProps, "textarea">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "label" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "descriptiveText" | "labelHidden" | "errorMessage" | "hasError" | "autoComplete" | "defaultChecked" | "inputMode" | "isReadOnly" | "isRequired" | "placeholder" | "resize" | "translate" | "onChange" | "autoFocus" | "cols" | "maxLength" | "minLength" | "readOnly" | "required" | "rows" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "dirName"> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
4222
|
+
|
|
4212
4223
|
declare const TextFieldPrimitive: {
|
|
4213
|
-
<Multiline extends boolean>(props: Pick<TextFieldProps<Multiline>, "isMultiline" | Exclude<keyof (Multiline extends true ?
|
|
4224
|
+
<Multiline extends boolean>(props: Pick<TextFieldProps<Multiline>, "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> & {
|
|
4214
4225
|
as?: "input" | "textarea" | TextFieldProps<Multiline>["as"];
|
|
4215
|
-
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "id" | "className" | "role" | "onClick" | "defaultValue" | "hidden" | "autoComplete" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "maxLength" | "minLength" | "readOnly" | "required" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key">, Exclude<"children", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"value", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"color", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"name", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"form", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"slot", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"style", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"title", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-label", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuetext", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"id", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"className", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"role", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"defaultValue", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoComplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"defaultChecked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"inputMode", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"translate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"maxLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"minLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"readOnly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"suppressContentEditableWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"suppressHydrationWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"accessKey", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"contentEditable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"contextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"dir", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"draggable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"lang", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"spellCheck", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"tabIndex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"radioGroup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"about", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"datatype", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"inlist", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"prefix", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"property", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"resource", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"typeof", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"vocab", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoCapitalize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoCorrect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoSave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemProp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemScope", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemType", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemID", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemRef", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"results", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"security", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"unselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"is", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-activedescendant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-atomic", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-autocomplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-busy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-checked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-controls", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-current", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-describedby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-details", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-dropeffect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-errormessage", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-expanded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-flowto", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-grabbed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-haspopup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-invalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-keyshortcuts", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-labelledby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-level", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-live", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-modal", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-multiline", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-multiselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-orientation", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-owns", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-posinset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-pressed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-readonly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-relevant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-roledescription", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-selected", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-setsize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-sort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemax", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemin", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuenow", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"dangerouslySetInnerHTML", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCopy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCopyCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPaste", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPasteCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onFocusCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBlur", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBlurCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onReset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onResetCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSubmit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSubmitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInvalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInvalidCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoad", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onError", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onErrorCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyPress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyPressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAbort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAbortCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThrough", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThroughCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDurationChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDurationChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEmptied", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEmptiedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEncrypted", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEncryptedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEnded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEndedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedData", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedDataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadata", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPause", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPauseCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlaying", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlayingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onProgress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onProgressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onRateChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onRateChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeeked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeekedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeeking", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeekingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onStalled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onStalledCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSuspend", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSuspendCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWaiting", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWaitingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAuxClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAuxClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onContextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onContextMenuCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDrag", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragExit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragExitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDrop", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDropCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSelect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSelectCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onScroll", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onScrollCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWheel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWheelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIteration", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIterationCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"key", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">>>, ref: React$1.ForwardedRef<HTMLTextAreaElement | HTMLInputElement>): JSX.Element;
|
|
4226
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "id" | "className" | "role" | "onClick" | "defaultValue" | "hidden" | "autoComplete" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "maxLength" | "minLength" | "readOnly" | "required" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key">, Exclude<"children", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"value", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"color", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"name", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"form", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"slot", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"style", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"title", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-label", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuetext", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"id", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"className", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"role", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"defaultValue", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoComplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"defaultChecked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"inputMode", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"translate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"maxLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"minLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"readOnly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"suppressContentEditableWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"suppressHydrationWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"accessKey", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"contentEditable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"contextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"dir", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"draggable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"lang", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"spellCheck", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"tabIndex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"radioGroup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"about", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"datatype", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"inlist", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"prefix", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"property", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"resource", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"typeof", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"vocab", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoCapitalize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoCorrect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoSave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemProp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemScope", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemType", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemID", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemRef", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"results", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"security", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"unselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"is", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-activedescendant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-atomic", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-autocomplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-busy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-checked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-controls", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-current", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-describedby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-details", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-dropeffect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-errormessage", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-expanded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-flowto", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-grabbed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-haspopup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-invalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-keyshortcuts", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-labelledby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-level", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-live", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-modal", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-multiline", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-multiselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-orientation", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-owns", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-posinset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-pressed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-readonly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-relevant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-roledescription", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-selected", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-setsize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-sort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemax", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemin", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuenow", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"dangerouslySetInnerHTML", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCopy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCopyCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPaste", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPasteCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onFocusCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBlur", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBlurCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onReset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onResetCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSubmit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSubmitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInvalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInvalidCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoad", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onError", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onErrorCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyPress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyPressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAbort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAbortCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThrough", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThroughCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDurationChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDurationChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEmptied", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEmptiedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEncrypted", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEncryptedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEnded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEndedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedData", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedDataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadata", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPause", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPauseCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlaying", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlayingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onProgress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onProgressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onRateChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onRateChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeeked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeekedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeeking", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeekingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onStalled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onStalledCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSuspend", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSuspendCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWaiting", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWaitingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAuxClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAuxClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onContextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onContextMenuCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDrag", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragExit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragExitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDrop", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDropCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSelect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSelectCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onScroll", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onScrollCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWheel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWheelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIteration", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIterationCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"key", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">>>, ref: React$1.ForwardedRef<HTMLTextAreaElement | HTMLInputElement>): JSX.Element;
|
|
4216
4227
|
displayName: string;
|
|
4217
4228
|
};
|
|
4218
|
-
declare const TextField: <Multiline extends boolean>(props: Pick<TextFieldProps<Multiline>, "isMultiline" | Exclude<keyof (Multiline extends true ?
|
|
4229
|
+
declare const TextField: <Multiline extends boolean>(props: Pick<TextFieldProps<Multiline>, "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> & {
|
|
4219
4230
|
as?: "input" | "textarea" | TextFieldProps<Multiline>["as"];
|
|
4220
|
-
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "id" | "className" | "role" | "onClick" | "defaultValue" | "hidden" | "autoComplete" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "maxLength" | "minLength" | "readOnly" | "required" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key">, Exclude<"children", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"value", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"color", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"name", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"form", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"slot", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"style", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"title", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-label", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuetext", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"id", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"className", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"role", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"defaultValue", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoComplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"defaultChecked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"inputMode", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"translate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"maxLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"minLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"readOnly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"suppressContentEditableWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"suppressHydrationWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"accessKey", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"contentEditable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"contextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"dir", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"draggable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"lang", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"spellCheck", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"tabIndex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"radioGroup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"about", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"datatype", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"inlist", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"prefix", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"property", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"resource", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"typeof", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"vocab", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoCapitalize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoCorrect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"autoSave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemProp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemScope", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemType", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemID", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"itemRef", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"results", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"security", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"unselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"is", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-activedescendant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-atomic", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-autocomplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-busy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-checked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-colspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-controls", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-current", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-describedby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-details", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-dropeffect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-errormessage", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-expanded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-flowto", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-grabbed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-haspopup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-invalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-keyshortcuts", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-labelledby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-level", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-live", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-modal", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-multiline", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-multiselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-orientation", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-owns", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-posinset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-pressed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-readonly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-relevant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-roledescription", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-rowspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-selected", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-setsize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-sort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemax", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemin", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"aria-valuenow", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"dangerouslySetInnerHTML", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCopy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCopyCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPaste", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPasteCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onFocusCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBlur", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBlurCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onReset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onResetCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSubmit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSubmitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInvalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onInvalidCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoad", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onError", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onErrorCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyPress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyPressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onKeyUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAbort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAbortCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThrough", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThroughCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDurationChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDurationChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEmptied", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEmptiedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEncrypted", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEncryptedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEnded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onEndedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedData", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedDataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadata", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLoadStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPause", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPauseCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlaying", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPlayingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onProgress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onProgressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onRateChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onRateChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeeked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeekedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeeking", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSeekingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onStalled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onStalledCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSuspend", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSuspendCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWaiting", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWaitingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAuxClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAuxClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onContextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onContextMenuCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDrag", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragExit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragExitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDragStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDrop", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onDropCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onMouseUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSelect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onSelectCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTouchStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onPointerOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onScroll", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onScrollCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWheel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onWheelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIteration", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIterationCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">> | Exclude<"key", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldProps : TextInputFieldProps), "as">>> & {
|
|
4231
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "children" | "value" | "disabled" | "color" | "name" | "form" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "id" | "className" | "role" | "onClick" | "defaultValue" | "hidden" | "autoComplete" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "maxLength" | "minLength" | "readOnly" | "required" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key">, Exclude<"children", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"value", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"color", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"name", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"form", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"slot", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"style", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"title", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-label", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuetext", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"id", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"className", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"role", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"defaultValue", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoComplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"defaultChecked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"inputMode", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"translate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"maxLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"minLength", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"readOnly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"suppressContentEditableWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"suppressHydrationWarning", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"accessKey", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"contentEditable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"contextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"dir", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"draggable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"lang", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"spellCheck", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"tabIndex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"radioGroup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"about", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"datatype", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"inlist", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"prefix", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"property", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"resource", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"typeof", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"vocab", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoCapitalize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoCorrect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"autoSave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemProp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemScope", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemType", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemID", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"itemRef", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"results", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"security", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"unselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"is", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-activedescendant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-atomic", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-autocomplete", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-busy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-checked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-colspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-controls", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-current", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-describedby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-details", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-disabled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-dropeffect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-errormessage", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-expanded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-flowto", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-grabbed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-haspopup", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-hidden", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-invalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-keyshortcuts", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-labelledby", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-level", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-live", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-modal", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-multiline", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-multiselectable", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-orientation", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-owns", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-placeholder", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-posinset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-pressed", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-readonly", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-relevant", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-required", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-roledescription", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowcount", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowindex", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-rowspan", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-selected", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-setsize", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-sort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemax", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuemin", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"aria-valuenow", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"dangerouslySetInnerHTML", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCopy", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCopyCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPaste", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPasteCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCompositionUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onFocus", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onFocusCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBlur", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBlurCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onBeforeInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInput", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInputCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onReset", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onResetCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSubmit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSubmitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInvalid", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onInvalidCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoad", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onError", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onErrorCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyPress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyPressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onKeyUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAbort", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAbortCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThrough", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onCanPlayThroughCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDurationChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDurationChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEmptied", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEmptiedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEncrypted", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEncryptedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEnded", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onEndedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedData", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedDataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadata", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadedMetadataCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLoadStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPause", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPauseCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlay", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlayCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlaying", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPlayingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onProgress", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onProgressCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onRateChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onRateChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeeked", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeekedCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeeking", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSeekingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onStalled", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onStalledCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSuspend", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSuspendCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdate", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTimeUpdateCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChange", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onVolumeChangeCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWaiting", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWaitingCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAuxClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAuxClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onContextMenu", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onContextMenuCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClick", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDoubleClickCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDrag", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragExit", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragExitCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDragStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDrop", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onDropCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onMouseUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSelect", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onSelectCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTouchStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerDown", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerDownCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerMove", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerMoveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerUp", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerUpCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerCancelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnter", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerEnterCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeave", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerLeaveCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOver", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOverCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOut", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onPointerOutCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onGotPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onLostPointerCaptureCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onScroll", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onScrollCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWheel", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onWheelCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStart", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationStartCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIteration", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onAnimationIterationCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEnd", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"onTransitionEndCapture", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">> | Exclude<"key", "as" | "isMultiline" | Exclude<keyof (Multiline extends true ? TextAreaFieldMultilineProps : TextInputFieldProps), "as">>> & {
|
|
4221
4232
|
ref?: React$1.ForwardedRef<HTMLInputElement | HTMLTextAreaElement>;
|
|
4222
4233
|
}) => ReturnType<typeof TextFieldPrimitive>;
|
|
4223
4234
|
|
|
4224
4235
|
declare const ToggleButton: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ToggleButtonProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ButtonProps, "button">, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "isFullWidth" | "isLoading" | "loadingText" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLButtonElement>>>, "children" | "value" | "border" | "disabled" | "color" | "name" | "area" | "form" | "slot" | "style" | "title" | "type" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "isFullWidth" | "isLoading" | "loadingText" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "isPressed" | "defaultPressed"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
4225
4236
|
|
|
4226
|
-
declare const ToggleButtonGroup: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ToggleButtonGroupProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "isExclusive"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4237
|
+
declare const ToggleButtonGroup: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ToggleButtonGroupProps, React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<FlexProps, "div">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLDivElement>>>, "children" | "value" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "variation" | "size" | "direction" | "wrap" | "alignItems" | "alignContent" | "justifyContent" | "gap" | "columnGap" | "rowGap" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "isExclusive" | "isSelectionRequired"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
4227
4238
|
|
|
4228
|
-
declare const View: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ViewProps, ElementType>, string | number | symbol> & React$1.RefAttributes<HTMLElement | HTMLDivElement | HTMLStyleElement | HTMLInputElement | HTMLSelectElement | HTMLImageElement | HTMLButtonElement | SVGPathElement | SVGElement | SVGSymbolElement | HTMLObjectElement | HTMLBaseElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLDialogElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement |
|
|
4239
|
+
declare const View: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<ViewProps, ElementType>, string | number | symbol> & React$1.RefAttributes<HTMLElement | HTMLDivElement | HTMLStyleElement | HTMLInputElement | HTMLSelectElement | HTMLFormElement | HTMLImageElement | HTMLButtonElement | SVGPathElement | SVGElement | SVGSymbolElement | HTMLObjectElement | HTMLBaseElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLDialogElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLHeadingElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLModElement | HTMLLabelElement | HTMLLegendElement | HTMLLIElement | HTMLLinkElement | HTMLMapElement | HTMLMetaElement | HTMLOListElement | HTMLOptGroupElement | HTMLOptionElement | HTMLParagraphElement | HTMLParamElement | HTMLPreElement | HTMLProgressElement | HTMLQuoteElement | HTMLSlotElement | HTMLScriptElement | HTMLSourceElement | HTMLSpanElement | HTMLTableElement | HTMLTemplateElement | HTMLTableSectionElement | HTMLTableDataCellElement | HTMLTextAreaElement | HTMLTableHeaderCellElement | HTMLTitleElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement | HTMLWebViewElement | SVGSVGElement | SVGCircleElement | SVGClipPathElement | SVGDefsElement | SVGDescElement | SVGEllipseElement | SVGFEBlendElement | SVGFEColorMatrixElement | SVGFEComponentTransferElement | SVGFECompositeElement | SVGFEConvolveMatrixElement | SVGFEDiffuseLightingElement | SVGFEDisplacementMapElement | SVGFEDistantLightElement | SVGFEDropShadowElement | SVGFEFloodElement | SVGFEFuncAElement | SVGFEFuncBElement | SVGFEFuncGElement | SVGFEFuncRElement | SVGFEGaussianBlurElement | SVGFEImageElement | SVGFEMergeElement | SVGFEMergeNodeElement | SVGFEMorphologyElement | SVGFEOffsetElement | SVGFEPointLightElement | SVGFESpecularLightingElement | SVGFESpotLightElement | SVGFETileElement | SVGFETurbulenceElement | SVGFilterElement | SVGForeignObjectElement | SVGGElement | SVGImageElement | SVGLineElement | SVGLinearGradientElement | SVGMarkerElement | SVGMaskElement | SVGMetadataElement | SVGPatternElement | SVGPolygonElement | SVGPolylineElement | SVGRadialGradientElement | SVGRectElement | SVGStopElement | SVGSwitchElement | SVGTextElement | SVGTextPathElement | SVGTSpanElement | SVGUseElement | SVGViewElement>>;
|
|
4229
4240
|
|
|
4230
4241
|
declare const VisuallyHidden: React$1.ForwardRefExoticComponent<Pick<PrimitivePropsWithRef<VisuallyHiddenProps, "span">, "children" | "border" | "color" | "area" | "slot" | "style" | "title" | "aria-label" | "aria-valuetext" | "row" | "as" | "isDisabled" | "id" | "className" | "testId" | "alignSelf" | "backgroundColor" | "backgroundImage" | "borderRadius" | "bottom" | "boxShadow" | "display" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "height" | "left" | "letterSpacing" | "lineHeight" | "margin" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "padding" | "position" | "right" | "textAlign" | "textDecoration" | "textTransform" | "top" | "transform" | "transformOrigin" | "width" | "whiteSpace" | "flex" | "order" | "grow" | "shrink" | "basis" | "column" | "columnEnd" | "columnSpan" | "columnStart" | "rowEnd" | "rowSpan" | "rowStart" | "ariaLabel" | "ariaValuetext" | "role" | "onClick" | "defaultValue" | "hidden" | "defaultChecked" | "inputMode" | "placeholder" | "translate" | "onChange" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "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" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
4231
4242
|
|
|
@@ -4337,6 +4348,7 @@ declare enum ComponentClassNames {
|
|
|
4337
4348
|
Text = "amplify-text",
|
|
4338
4349
|
Textarea = "amplify-textarea",
|
|
4339
4350
|
TextField = "amplify-textfield",
|
|
4351
|
+
TextAreaField = "amplify-textareafield",
|
|
4340
4352
|
ToggleButton = "amplify-togglebutton",
|
|
4341
4353
|
ToggleButtonGroup = "amplify-togglebuttongroup",
|
|
4342
4354
|
VisuallyHidden = "amplify-visually-hidden"
|
|
@@ -4411,6 +4423,7 @@ declare const index_SwitchField: typeof SwitchField;
|
|
|
4411
4423
|
declare const index_Tabs: typeof Tabs;
|
|
4412
4424
|
declare const index_TabItem: typeof TabItem;
|
|
4413
4425
|
declare const index_Text: typeof Text;
|
|
4426
|
+
declare const index_TextAreaField: typeof TextAreaField;
|
|
4414
4427
|
declare const index_TextField: typeof TextField;
|
|
4415
4428
|
declare const index_ToggleButton: typeof ToggleButton;
|
|
4416
4429
|
declare const index_ToggleButtonGroup: typeof ToggleButtonGroup;
|
|
@@ -5871,9 +5884,10 @@ type index_TextVariation = TextVariation;
|
|
|
5871
5884
|
type index_TextProps = TextProps;
|
|
5872
5885
|
type index_TextAreaStyleProps = TextAreaStyleProps;
|
|
5873
5886
|
type index_TextAreaProps = TextAreaProps;
|
|
5887
|
+
type index_TextAreaFieldProps = TextAreaFieldProps;
|
|
5874
5888
|
type index_TextFieldOptions = TextFieldOptions;
|
|
5875
5889
|
type index_TextInputFieldProps = TextInputFieldProps;
|
|
5876
|
-
type
|
|
5890
|
+
type index_TextAreaFieldMultilineProps = TextAreaFieldMultilineProps;
|
|
5877
5891
|
type index_TextFieldProps<Multiline extends boolean> = TextFieldProps<Multiline>;
|
|
5878
5892
|
type index_ToggleButtonProps = ToggleButtonProps;
|
|
5879
5893
|
type index_ToggleButtonGroupProps = ToggleButtonGroupProps;
|
|
@@ -5929,6 +5943,7 @@ declare namespace index {
|
|
|
5929
5943
|
index_Tabs as Tabs,
|
|
5930
5944
|
index_TabItem as TabItem,
|
|
5931
5945
|
index_Text as Text,
|
|
5946
|
+
index_TextAreaField as TextAreaField,
|
|
5932
5947
|
index_TextField as TextField,
|
|
5933
5948
|
index_ToggleButton as ToggleButton,
|
|
5934
5949
|
index_ToggleButtonGroup as ToggleButtonGroup,
|
|
@@ -7388,9 +7403,10 @@ declare namespace index {
|
|
|
7388
7403
|
index_TextProps as TextProps,
|
|
7389
7404
|
index_TextAreaStyleProps as TextAreaStyleProps,
|
|
7390
7405
|
index_TextAreaProps as TextAreaProps,
|
|
7406
|
+
index_TextAreaFieldProps as TextAreaFieldProps,
|
|
7391
7407
|
index_TextFieldOptions as TextFieldOptions,
|
|
7392
7408
|
index_TextInputFieldProps as TextInputFieldProps,
|
|
7393
|
-
|
|
7409
|
+
index_TextAreaFieldMultilineProps as TextAreaFieldMultilineProps,
|
|
7394
7410
|
index_TextFieldProps as TextFieldProps,
|
|
7395
7411
|
index_ToggleButtonProps as ToggleButtonProps,
|
|
7396
7412
|
index_ToggleButtonGroupProps as ToggleButtonGroupProps,
|
|
@@ -7409,4 +7425,4 @@ declare namespace index {
|
|
|
7409
7425
|
};
|
|
7410
7426
|
}
|
|
7411
7427
|
|
|
7412
|
-
export { Alert, AlertProps, AlertVariations, AllStyleProps, AmplifyProvider, AriaProps, Authenticator, Badge, BadgeProps, BadgeSizes, BadgeVariations, BaseComponentProps, BaseStyleProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, ButtonSizes, ButtonTypes, ButtonVariations, CSSLayoutStyleProps, Card, CardProps, CardVariations, CheckboxField, CheckboxFieldProps, Collection, CollectionBaseProps, CollectionProps, CollectionType, CollectionWrapperProps, ColorMode, ComponentClassNames, ComponentPropToStyleProp, ComponentPropsToStylePropsMap, ComponentPropsToStylePropsMapKeys, CountryCodeSelectProps, Divider, DividerOptions, DividerOrientations, DividerProps, DividerSizes, ElementProps, ElementType, Expander, ExpanderItem, ExpanderItemProps, ExpanderProps, FieldClearButtonProps, FieldDescriptionProps, FieldErrorMessageProps, FieldGroupIcon, FieldGroupIconButton, FieldGroupIconButtonProps, FieldGroupIconProps, FieldGroupOptions, FieldGroupOrientation, FieldProps, FieldVariations, Flex, FlexContainerStyleProps, FlexItemStyleProps, FlexProps, Grid, GridCollectionProps, GridContainerStyleProps, GridItemStyleProps, GridProps, GridSpanType, HTMLElementType, Heading, HeadingLevel, HeadingProps, Icon, Icon360, Icon3dRotation, Icon4k, Icon5g, Icon6FtApart, IconAcUnit, IconAccessAlarm, IconAccessAlarms, IconAccessTime, IconAccessibility, IconAccessibilityNew, IconAccessible, IconAccessibleForward, IconAccountBalance, IconAccountBalanceWallet, IconAccountBox, IconAccountCircle, IconAccountTree, IconAdUnits, IconAdb, IconAdd, IconAddAPhoto, IconAddAlarm, IconAddAlert, IconAddBox, IconAddBusiness, IconAddCircle, IconAddCircleOutline, IconAddComment, IconAddIcCall, IconAddLocation, IconAddLocationAlt, IconAddPhotoAlternate, IconAddRoad, IconAddShoppingCart, IconAddTask, IconAddToHomeScreen, IconAddToPhotos, IconAddToQueue, IconAddchart, IconAdjust, IconAdminPanelSettings, IconAgriculture, IconAirlineSeatFlat, IconAirlineSeatFlatAngled, IconAirlineSeatIndividualSuite, IconAirlineSeatLegroomExtra, IconAirlineSeatLegroomNormal, IconAirlineSeatLegroomReduced, IconAirlineSeatReclineExtra, IconAirlineSeatReclineNormal, IconAirplanemodeActive, IconAirplanemodeInactive, IconAirplay, IconAirportShuttle, IconAlarm, IconAlarmAdd, IconAlarmOff, IconAlarmOn, IconAlbum, IconAllInbox, IconAllInclusive, IconAllOut, IconAltRoute, IconAlternateEmail, IconAmpStories, IconAnalytics, IconAnchor, IconAndroid, IconAnnouncement, IconApartment, IconApi, IconAppBlocking, IconAppSettingsAlt, IconApps, IconArchitecture, IconArchive, IconArrowBack, IconArrowBackIos, IconArrowCircleDown, IconArrowCircleUp, IconArrowDownward, IconArrowDropDown, IconArrowDropDownCircle, IconArrowDropUp, IconArrowForward, IconArrowForwardIos, IconArrowLeft, IconArrowRight, IconArrowRightAlt, IconArrowUpward, IconArtTrack, IconArticle, IconAspectRatio, IconAssessment, IconAssignment, IconAssignmentInd, IconAssignmentLate, IconAssignmentReturn, IconAssignmentReturned, IconAssignmentTurnedIn, IconAssistant, IconAssistantPhoto, IconAtm, IconAttachEmail, IconAttachFile, IconAttachMoney, IconAttachment, IconAttribution, IconAudiotrack, IconAutoDelete, IconAutorenew, IconAvTimer, IconBabyChangingStation, IconBackpack, IconBackspace, IconBackup, IconBackupTable, IconBallot, IconBarChart, IconBatchPrediction, IconBathtub, IconBatteryAlert, IconBatteryChargingFull, IconBatteryFull, IconBatteryStd, IconBatteryUnknown, IconBeachAccess, IconBedtime, IconBeenhere, IconBento, IconBikeScooter, IconBiotech, IconBlock, IconBluetooth, IconBluetoothAudio, IconBluetoothConnected, IconBluetoothDisabled, IconBluetoothSearching, IconBlurCircular, IconBlurLinear, IconBlurOff, IconBlurOn, IconBook, IconBookOnline, IconBookmark, IconBookmarkBorder, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderClear, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderOuter, IconBorderRight, IconBorderStyle, IconBorderTop, IconBorderVertical, IconBrandingWatermark, IconBrightnessAuto, IconBrightnessHigh, IconBrightnessLow, IconBrightnessMedium, IconBrightness_1, IconBrightness_2, IconBrightness_3, IconBrightness_4, IconBrightness_5, IconBrightness_6, IconBrightness_7, IconBrokenImage, IconBrowserNotSupported, IconBrush, IconBubbleChart, IconBugReport, IconBuild, IconBuildCircle, IconBurstMode, IconBusiness, IconBusinessCenter, IconCached, IconCake, IconCalculate, IconCalendarToday, IconCalendarViewDay, IconCall, IconCallEnd, IconCallMade, IconCallMerge, IconCallMissed, IconCallMissedOutgoing, IconCallReceived, IconCallSplit, IconCallToAction, IconCamera, IconCameraAlt, IconCameraEnhance, IconCameraFront, IconCameraRear, IconCameraRoll, IconCampaign, IconCancel, IconCancelPresentation, IconCancelScheduleSend, IconCardGiftcard, IconCardMembership, IconCardTravel, IconCarpenter, IconCasino, IconCast, IconCastConnected, IconCastForEducation, IconCategory, IconCenterFocusStrong, IconCenterFocusWeak, IconChangeHistory, IconChargingStation, IconChat, IconChatBubble, IconChatBubbleOutline, IconCheck, IconCheckBox, IconCheckBoxOutlineBlank, IconCheckCircle, IconCheckCircleOutline, IconCheckroom, IconChevronLeft, IconChevronRight, IconChildCare, IconChildFriendly, IconChromeReaderMode, IconClass, IconCleanHands, IconCleaningServices, IconClear, IconClearAll, IconClose, IconCloseFullscreen, IconClosedCaption, IconClosedCaptionDisabled, IconCloud, IconCloudCircle, IconCloudDone, IconCloudDownload, IconCloudOff, IconCloudQueue, IconCloudUpload, IconCode, IconCollections, IconCollectionsBookmark, IconColorLens, IconColorize, IconComment, IconCommentBank, IconCommute, IconCompare, IconCompareArrows, IconCompassCalibration, IconComputer, IconConfirmationNumber, IconConnectWithoutContact, IconConstruction, IconContactMail, IconContactPage, IconContactPhone, IconContactSupport, IconContactless, IconContacts, IconContentCopy, IconContentCut, IconContentPaste, IconControlCamera, IconControlPoint, IconControlPointDuplicate, IconCopyright, IconCoronavirus, IconCorporateFare, IconCountertops, IconCreate, IconCreateNewFolder, IconCreditCard, IconCrop, IconCropDin, IconCropFree, IconCropLandscape, IconCropOriginal, IconCropPortrait, IconCropRotate, IconCropSquare, IconCrop_16_9, IconCrop_3_2, IconCrop_5_4, IconCrop_7_5, IconDashboard, IconDataUsage, IconDateRange, IconDeck, IconDehaze, IconDelete, IconDeleteForever, IconDeleteOutline, IconDeleteSweep, IconDepartureBoard, IconDescription, IconDesignServices, IconDesktopAccessDisabled, IconDesktopMac, IconDesktopWindows, IconDetails, IconDeveloperBoard, IconDeveloperMode, IconDeviceHub, IconDeviceUnknown, IconDevices, IconDevicesOther, IconDialerSip, IconDialpad, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBus, IconDirectionsCar, IconDirectionsOff, IconDirectionsRailway, IconDirectionsRun, IconDirectionsSubway, IconDirectionsTransit, IconDirectionsWalk, IconDisabledByDefault, IconDiscFull, IconDns, IconDoDisturb, IconDoDisturbAlt, IconDoDisturbOff, IconDoDisturbOn, IconDoNotStep, IconDoNotTouch, IconDock, IconDomain, IconDomainDisabled, IconDomainVerification, IconDone, IconDoneAll, IconDoneOutline, IconDonutLarge, IconDonutSmall, IconDoubleArrow, IconDownload, IconDownloadDone, IconDrafts, IconDragHandle, IconDragIndicator, IconDriveEta, IconDry, IconDuo, IconDvr, IconDynamicFeed, IconDynamicForm, IconEast, IconEco, IconEdit, IconEditAttributes, IconEditLocation, IconEditRoad, IconEject, IconElderly, IconElectricBike, IconElectricCar, IconElectricMoped, IconElectricScooter, IconElectricalServices, IconElevator, IconEmail, IconEmojiEmotions, IconEmojiEvents, IconEmojiFlags, IconEmojiFoodBeverage, IconEmojiNature, IconEmojiObjects, IconEmojiPeople, IconEmojiSymbols, IconEmojiTransportation, IconEngineering, IconEnhancedEncryption, IconEqualizer, IconError, IconErrorOutline, IconEscalator, IconEscalatorWarning, IconEuro, IconEuroSymbol, IconEvStation, IconEvent, IconEventAvailable, IconEventBusy, IconEventNote, IconEventSeat, IconExitToApp, IconExpandLess, IconExpandMore, IconExplicit, IconExplore, IconExploreOff, IconExposure, IconExposureNeg_1, IconExposureNeg_2, IconExposurePlus_1, IconExposurePlus_2, IconExposureZero, IconExtension, IconFace, IconFaceUnlock, IconFacebook, IconFactCheck, IconFamilyRestroom, IconFastForward, IconFastRewind, IconFastfood, IconFavorite, IconFavoriteBorder, IconFeaturedPlayList, IconFeaturedVideo, IconFeedback, IconFence, IconFiberDvr, IconFiberManualRecord, IconFiberNew, IconFiberPin, IconFiberSmartRecord, IconFileCopy, IconFilter, IconFilterAlt, IconFilterBAndW, IconFilterCenterFocus, IconFilterDrama, IconFilterFrames, IconFilterHdr, IconFilterList, IconFilterNone, IconFilterTiltShift, IconFilterVintage, IconFilter_1, IconFilter_2, IconFilter_3, IconFilter_4, IconFilter_5, IconFilter_6, IconFilter_7, IconFilter_8, IconFilter_9, IconFilter_9Plus, IconFindInPage, IconFindReplace, IconFingerprint, IconFireExtinguisher, IconFireplace, IconFirstPage, IconFitnessCenter, IconFlag, IconFlaky, IconFlare, IconFlashAuto, IconFlashOff, IconFlashOn, IconFlight, IconFlightLand, IconFlightTakeoff, IconFlip, IconFlipCameraAndroid, IconFlipCameraIos, IconFlipToBack, IconFlipToFront, IconFolder, IconFolderOpen, IconFolderShared, IconFolderSpecial, IconFollowTheSigns, IconFontDownload, IconFoodBank, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatBold, IconFormatClear, IconFormatColorReset, IconFormatIndentDecrease, IconFormatIndentIncrease, IconFormatItalic, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatListNumberedRtl, IconFormatPaint, IconFormatQuote, IconFormatShapes, IconFormatSize, IconFormatStrikethrough, IconFormatTextdirectionLToR, IconFormatTextdirectionRToL, IconFormatUnderlined, IconForum, IconForward, IconForwardToInbox, IconForward_10, IconForward_30, IconForward_5, IconFoundation, IconFreeBreakfast, IconFullscreen, IconFullscreenExit, IconFunctions, IconGTranslate, IconGamepad, IconGames, IconGavel, IconGesture, IconGetApp, IconGif, IconGolfCourse, IconGpsFixed, IconGpsNotFixed, IconGpsOff, IconGrade, IconGradient, IconGrading, IconGrain, IconGraphicEq, IconGrass, IconGridOff, IconGridOn, IconGroup, IconGroupAdd, IconGroupWork, IconGroups, IconHandyman, IconHd, IconHdrOff, IconHdrOn, IconHdrStrong, IconHdrWeak, IconHeadset, IconHeadsetMic, IconHealing, IconHearing, IconHearingDisabled, IconHeight, IconHelp, IconHelpCenter, IconHelpOutline, IconHighQuality, IconHighlight, IconHighlightAlt, IconHighlightOff, IconHistory, IconHistoryEdu, IconHistoryToggleOff, IconHome, IconHomeRepairService, IconHomeWork, IconHorizontalRule, IconHorizontalSplit, IconHotTub, IconHotel, IconHourglassBottom, IconHourglassDisabled, IconHourglassEmpty, IconHourglassFull, IconHourglassTop, IconHouse, IconHouseSiding, IconHowToReg, IconHowToVote, IconHttp, IconHttps, IconHvac, IconImage, IconImageAspectRatio, IconImageNotSupported, IconImageSearch, IconImportContacts, IconImportExport, IconImportantDevices, IconInbox, IconIndeterminateCheckBox, IconInfo, IconInput, IconInsertChart, IconInsertChartOutlined, IconInsertComment, IconInsertDriveFile, IconInsertEmoticon, IconInsertInvitation, IconInsertLink, IconInsertPhoto, IconInsights, IconIntegrationInstructions, IconInvertColors, IconInvertColorsOff, IconIso, IconKeyboard, IconKeyboardArrowDown, IconKeyboardArrowLeft, IconKeyboardArrowRight, IconKeyboardArrowUp, IconKeyboardBackspace, IconKeyboardCapslock, IconKeyboardHide, IconKeyboardReturn, IconKeyboardTab, IconKeyboardVoice, IconKingBed, IconKitchen, IconLabel, IconLabelImportant, IconLabelOff, IconLandscape, IconLanguage, IconLaptop, IconLaptopChromebook, IconLaptopMac, IconLaptopWindows, IconLastPage, IconLaunch, IconLayers, IconLayersClear, IconLeaderboard, IconLeakAdd, IconLeakRemove, IconLegendToggle, IconLens, IconLibraryAdd, IconLibraryAddCheck, IconLibraryBooks, IconLibraryMusic, IconLightbulb, IconLineStyle, IconLineWeight, IconLinearScale, IconLink, IconLinkOff, IconLinkedCamera, IconList, IconListAlt, IconLiveHelp, IconLiveTv, IconLocalActivity, IconLocalAirport, IconLocalAtm, IconLocalBar, IconLocalCafe, IconLocalCarWash, IconLocalConvenienceStore, IconLocalDining, IconLocalDrink, IconLocalFireDepartment, IconLocalFlorist, IconLocalGasStation, IconLocalGroceryStore, IconLocalHospital, IconLocalHotel, IconLocalLaundryService, IconLocalLibrary, IconLocalMall, IconLocalMovies, IconLocalOffer, IconLocalParking, IconLocalPharmacy, IconLocalPhone, IconLocalPizza, IconLocalPlay, IconLocalPolice, IconLocalPostOffice, IconLocalPrintshop, IconLocalSee, IconLocalShipping, IconLocalTaxi, IconLocationCity, IconLocationDisabled, IconLocationOff, IconLocationOn, IconLocationSearching, IconLock, IconLockOpen, IconLogin, IconLooks, IconLooksOne, IconLooksTwo, IconLooks_3, IconLooks_4, IconLooks_5, IconLooks_6, IconLoop, IconLoupe, IconLowPriority, IconLoyalty, IconLuggage, IconMail, IconMailOutline, IconMap, IconMapsUgc, IconMarkChatRead, IconMarkChatUnread, IconMarkEmailRead, IconMarkEmailUnread, IconMarkunread, IconMarkunreadMailbox, IconMasks, IconMaximize, IconMediation, IconMedicalServices, IconMeetingRoom, IconMemory, IconMenu, IconMenuBook, IconMenuOpen, IconMergeType, IconMessage, IconMic, IconMicNone, IconMicOff, IconMicrowave, IconMilitaryTech, IconMinimize, IconMiscellaneousServices, IconMissedVideoCall, IconMms, IconMobileFriendly, IconMobileOff, IconMobileScreenShare, IconMode, IconModeComment, IconModelTraining, IconMonetizationOn, IconMoney, IconMoneyOff, IconMoneyOffCsred, IconMonochromePhotos, IconMood, IconMoodBad, IconMoped, IconMore, IconMoreHoriz, IconMoreTime, IconMoreVert, IconMotionPhotosOn, IconMotionPhotosPause, IconMotionPhotosPaused, IconMouse, IconMoveToInbox, IconMovie, IconMovieCreation, IconMovieFilter, IconMultilineChart, IconMultipleStop, IconMuseum, IconMusicNote, IconMusicOff, IconMusicVideo, IconMyLocation, IconNat, IconNature, IconNaturePeople, IconNavigateBefore, IconNavigateNext, IconNavigation, IconNearMe, IconNearMeDisabled, IconNetworkCheck, IconNetworkLocked, IconNewReleases, IconNextPlan, IconNextWeek, IconNfc, IconNightShelter, IconNightsStay, IconNoBackpack, IconNoCell, IconNoDrinks, IconNoEncryption, IconNoEncryptionGmailerrorred, IconNoFlash, IconNoFood, IconNoLuggage, IconNoMeals, IconNoMeetingRoom, IconNoPhotography, IconNoSim, IconNoStroller, IconNoTransfer, IconNorth, IconNorthEast, IconNorthWest, IconNotAccessible, IconNotInterested, IconNotListedLocation, IconNotStarted, IconNote, IconNoteAdd, IconNotes, IconNotificationImportant, IconNotifications, IconNotificationsActive, IconNotificationsNone, IconNotificationsOff, IconNotificationsPaused, IconOfflineBolt, IconOfflinePin, IconOndemandVideo, IconOnlinePrediction, IconOpacity, IconOpenInBrowser, IconOpenInFull, IconOpenInNew, IconOpenWith, IconOutbond, IconOutdoorGrill, IconOutlet, IconOutlinedFlag, IconPages, IconPageview, IconPalette, IconPanTool, IconPanorama, IconPanoramaFishEye, IconPanoramaHorizontal, IconPanoramaVertical, IconPanoramaWideAngle, IconPartyMode, IconPause, IconPauseCircleFilled, IconPauseCircleOutline, IconPausePresentation, IconPayment, IconPayments, IconPedalBike, IconPending, IconPendingActions, IconPeople, IconPeopleAlt, IconPeopleOutline, IconPermCameraMic, IconPermContactCalendar, IconPermDataSetting, IconPermDeviceInformation, IconPermIdentity, IconPermMedia, IconPermPhoneMsg, IconPermScanWifi, IconPerson, IconPersonAdd, IconPersonAddAlt_1, IconPersonAddDisabled, IconPersonOutline, IconPersonPin, IconPersonPinCircle, IconPersonRemove, IconPersonRemoveAlt_1, IconPersonSearch, IconPersonalVideo, IconPestControl, IconPestControlRodent, IconPets, IconPhone, IconPhoneAndroid, IconPhoneBluetoothSpeaker, IconPhoneCallback, IconPhoneDisabled, IconPhoneEnabled, IconPhoneForwarded, IconPhoneInTalk, IconPhoneIphone, IconPhoneLocked, IconPhoneMissed, IconPhonePaused, IconPhonelink, IconPhonelinkErase, IconPhonelinkLock, IconPhonelinkOff, IconPhonelinkRing, IconPhonelinkSetup, IconPhoto, IconPhotoAlbum, IconPhotoCamera, IconPhotoFilter, IconPhotoLibrary, IconPhotoSizeSelectActual, IconPhotoSizeSelectLarge, IconPhotoSizeSelectSmall, IconPictureAsPdf, IconPictureInPicture, IconPictureInPictureAlt, IconPieChart, IconPieChartOutline, IconPinDrop, IconPlace, IconPlagiarism, IconPlayArrow, IconPlayCircleFilled, IconPlayCircleOutline, IconPlayForWork, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistPlay, IconPlumbing, IconPlusOne, IconPointOfSale, IconPolicy, IconPoll, IconPolymer, IconPool, IconPortableWifiOff, IconPortrait, IconPostAdd, IconPower, IconPowerInput, IconPowerOff, IconPowerSettingsNew, IconPrecisionManufacturing, IconPregnantWoman, IconPresentToAll, IconPreview, IconPrint, IconPrintDisabled, IconPriorityHigh, IconPrivacyTip, IconProps, IconPsychology, IconPublic, IconPublicOff, IconPublish, IconPublishedWithChanges, IconPushPin, IconQrCode, IconQrCodeScanner, IconQueryBuilder, IconQuestionAnswer, IconQueue, IconQueueMusic, IconQueuePlayNext, IconQuickreply, IconRadio, IconRadioButtonChecked, IconRadioButtonUnchecked, IconRateReview, IconReadMore, IconReceipt, IconReceiptLong, IconRecentActors, IconRecordVoiceOver, IconRedeem, IconRedo, IconReduceCapacity, IconRefresh, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRemoveFromQueue, IconRemoveRedEye, IconRemoveShoppingCart, IconReorder, IconRepeat, IconRepeatOne, IconReplay, IconReplay_10, IconReplay_30, IconReplay_5, IconReply, IconReplyAll, IconReport, IconReportGmailerrorred, IconReportOff, IconReportProblem, IconRequestPage, IconRequestQuote, IconRestaurant, IconRestaurantMenu, IconRestore, IconRestoreFromTrash, IconRestorePage, IconRingVolume, IconRoofing, IconRoom, IconRoomPreferences, IconRoomService, IconRotateLeft, IconRotateRight, IconRotate_90DegreesCcw, IconRoundedCorner, IconRouter, IconRowing, IconRssFeed, IconRule, IconRuleFolder, IconRunCircle, IconRvHookup, IconSanitizer, IconSatellite, IconSave, IconSaveAlt, IconScanner, IconScatterPlot, IconSchedule, IconSchool, IconScience, IconScore, IconScreenLockLandscape, IconScreenLockPortrait, IconScreenLockRotation, IconScreenRotation, IconScreenShare, IconSdCard, IconSdCardAlert, IconSdStorage, IconSearch, IconSearchOff, IconSecurity, IconSelectAll, IconSelfImprovement, IconSend, IconSensorDoor, IconSensorWindow, IconSentimentDissatisfied, IconSentimentNeutral, IconSentimentSatisfied, IconSentimentSatisfiedAlt, IconSentimentVeryDissatisfied, IconSentimentVerySatisfied, IconSetMeal, IconSettings, IconSettingsApplications, IconSettingsBackupRestore, IconSettingsBluetooth, IconSettingsBrightness, IconSettingsCell, IconSettingsEthernet, IconSettingsInputAntenna, IconSettingsInputComponent, IconSettingsInputComposite, IconSettingsInputHdmi, IconSettingsInputSvideo, IconSettingsOverscan, IconSettingsPhone, IconSettingsPower, IconSettingsRemote, IconSettingsSystemDaydream, IconSettingsVoice, IconShare, IconShop, IconShopTwo, IconShoppingBag, IconShoppingBasket, IconShoppingCart, IconShortText, IconShowChart, IconShuffle, IconShutterSpeed, IconSick, IconSignalCellularAlt, IconSignalCellularConnectedNoInternet_4Bar, IconSignalCellularNoSim, IconSignalCellularNull, IconSignalCellularOff, IconSignalCellular_4Bar, IconSignalWifiOff, IconSignalWifi_4Bar, IconSignalWifi_4BarLock, IconSimCard, IconSingleBed, IconSize, IconSkipNext, IconSkipPrevious, IconSlideshow, IconSlowMotionVideo, IconSmartButton, IconSmartphone, IconSmokeFree, IconSmokingRooms, IconSms, IconSmsFailed, IconSnippetFolder, IconSnooze, IconSoap, IconSort, IconSortByAlpha, IconSource, IconSouth, IconSouthEast, IconSouthWest, IconSpa, IconSpaceBar, IconSpeaker, IconSpeakerGroup, IconSpeakerNotes, IconSpeakerNotesOff, IconSpeakerPhone, IconSpeed, IconSpellcheck, IconSports, IconSportsBar, IconSportsBaseball, IconSportsBasketball, IconSportsCricket, IconSportsEsports, IconSportsFootball, IconSportsGolf, IconSportsHandball, IconSportsHockey, IconSportsKabaddi, IconSportsMma, IconSportsMotorsports, IconSportsRugby, IconSportsSoccer, IconSportsTennis, IconSportsVolleyball, IconSquareFoot, IconStackedLineChart, IconStairs, IconStar, IconStarBorder, IconStarBorderPurple500, IconStarHalf, IconStarOutline, IconStarPurple500, IconStarRate, IconStars, IconStayCurrentLandscape, IconStayCurrentPortrait, IconStayPrimaryLandscape, IconStayPrimaryPortrait, IconStickyNote_2, IconStop, IconStopCircle, IconStopScreenShare, IconStorage, IconStore, IconStoreMallDirectory, IconStorefront, IconStraighten, IconStreetview, IconStrikethroughS, IconStroller, IconStyle, IconSubdirectoryArrowLeft, IconSubdirectoryArrowRight, IconSubject, IconSubscript, IconSubscriptions, IconSubtitles, IconSubtitlesOff, IconSubway, IconSuperscript, IconSupervisedUserCircle, IconSupervisorAccount, IconSupport, IconSupportAgent, IconSurroundSound, IconSwapCalls, IconSwapHoriz, IconSwapHorizontalCircle, IconSwapVert, IconSwapVerticalCircle, IconSwitchCamera, IconSwitchLeft, IconSwitchRight, IconSwitchVideo, IconSync, IconSyncAlt, IconSyncDisabled, IconSyncProblem, IconSystemUpdate, IconSystemUpdateAlt, IconTab, IconTabUnselected, IconTableChart, IconTableRows, IconTableView, IconTablet, IconTabletAndroid, IconTabletMac, IconTagFaces, IconTapAndPlay, IconTapas, IconTerrain, IconTextFields, IconTextFormat, IconTextRotateUp, IconTextRotateVertical, IconTextRotationAngledown, IconTextRotationAngleup, IconTextRotationDown, IconTextRotationNone, IconTextSnippet, IconTextsms, IconTexture, IconTheaters, IconThermostat, IconThumbDown, IconThumbDownAlt, IconThumbUp, IconThumbUpAlt, IconThumbsUpDown, IconTimeToLeave, IconTimelapse, IconTimeline, IconTimer, IconTimerOff, IconTimer_10, IconTimer_3, IconTitle, IconToc, IconToday, IconToggleOff, IconToggleOn, IconToll, IconTonality, IconTopic, IconTouchApp, IconTour, IconToys, IconTrackChanges, IconTraffic, IconTrain, IconTram, IconTransferWithinAStation, IconTransform, IconTransitEnterexit, IconTranslate, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTripOrigin, IconTty, IconTune, IconTurnedIn, IconTurnedInNot, IconTv, IconTvOff, IconTwoWheeler, IconUmbrella, IconUnarchive, IconUndo, IconUnfoldLess, IconUnfoldMore, IconUnpublished, IconUnsubscribe, IconUpdate, IconUpgrade, IconUpload, IconUsb, IconVerified, IconVerifiedUser, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalSplit, IconVibration, IconVideoCall, IconVideoLabel, IconVideoLibrary, IconVideoSettings, IconVideocam, IconVideocamOff, IconVideogameAsset, IconViewAgenda, IconViewArray, IconViewCarousel, IconViewColumn, IconViewComfy, IconViewCompact, IconViewDay, IconViewHeadline, IconViewList, IconViewModule, IconViewQuilt, IconViewSidebar, IconViewStream, IconViewWeek, IconVignette, IconVisibility, IconVisibilityOff, IconVoiceChat, IconVoiceOverOff, IconVoicemail, IconVolumeDown, IconVolumeMute, IconVolumeOff, IconVolumeUp, IconVpnKey, IconVpnLock, IconWallpaper, IconWarning, IconWarningAmber, IconWash, IconWatch, IconWatchLater, IconWaterDamage, IconWaves, IconWbAuto, IconWbCloudy, IconWbIncandescent, IconWbIridescent, IconWbSunny, IconWc, IconWeb, IconWebAsset, IconWeekend, IconWest, IconWhatshot, IconWheelchairPickup, IconWhereToVote, IconWidgets, IconWifi, IconWifiCalling, IconWifiLock, IconWifiOff, IconWifiProtectedSetup, IconWifiTethering, IconWineBar, IconWork, IconWorkOff, IconWorkOutline, IconWrapText, IconWrongLocation, IconWysiwyg, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut, IconZoomOutMap, Image, ImageOptions, ImageProps, ImageStyleProps, InputMode, InputProps, InputSizes, LabelPositions, LabelProps, Link, LinkOptions, LinkProps, ListCollectionProps, Loader, LoaderProps, LoaderSizes, LoaderVariations, Menu, MenuButton, MenuItem, MenuItemProps, MenuProps, Pagination, PaginationCallbackType, PaginationItemProps, PaginationItemType, PaginationProps, PasswordField, PasswordFieldProps, PasswordFieldType, PhoneNumberField, PhoneNumberFieldProps, Placeholder, PlaceholderProps, PlaceholderSizes, Primitive, PrimitiveProps, PrimitivePropsWithRef, Radio, RadioGroupField, RadioGroupFieldProps, RadioProps, Rating, RatingOptions, RatingProps, RatingSizes, ResponsiveObject, ResponsiveStyle, ScrollView, ScrollViewProps, SearchField, SearchFieldButtonProps, SearchFieldProps, SelectField, SelectFieldProps, SharedText, ShowPasswordButtonProps, Sizes, SliderField, SliderFieldProps, StepperField, StepperFieldProps, StyleProp, SwitchField, SwitchFieldProps, TabItem, TabItemProps, Table, TableBody, TableBodyProps, TableCell, TableCellElement, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, TableSize, TableVariation, Tabs, TabsProps, TabsSpacing, Text, TextAreaFieldProps, TextAreaProps, TextAreaStyleProps, TextField, TextFieldOptions, TextFieldProps, TextInputFieldProps, TextProps, TextVariation, Theme, ToggleButton, ToggleButtonGroup, ToggleButtonGroupProps, ToggleButtonProps, UsePaginationProps, UsePaginationResult, UseSearchFieldProps, View, ViewBox, ViewProps, VisuallyHidden, VisuallyHiddenProps, index$1 as components, index as primitives, useAmplify, useAuthenticator, usePagination, useTheme, withAuthenticator };
|
|
7428
|
+
export { Alert, AlertProps, AlertVariations, AllStyleProps, AmplifyProvider, AriaProps, Authenticator, Badge, BadgeProps, BadgeSizes, BadgeVariations, BaseComponentProps, BaseStyleProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, ButtonSizes, ButtonTypes, ButtonVariations, CSSLayoutStyleProps, Card, CardProps, CardVariations, CheckboxField, CheckboxFieldProps, Collection, CollectionBaseProps, CollectionProps, CollectionType, CollectionWrapperProps, ColorMode, ComponentClassNames, ComponentPropToStyleProp, ComponentPropsToStylePropsMap, ComponentPropsToStylePropsMapKeys, CountryCodeSelectProps, Divider, DividerOptions, DividerOrientations, DividerProps, DividerSizes, ElementProps, ElementType, Expander, ExpanderItem, ExpanderItemProps, ExpanderProps, FieldClearButtonProps, FieldDescriptionProps, FieldErrorMessageProps, FieldGroupIcon, FieldGroupIconButton, FieldGroupIconButtonProps, FieldGroupIconProps, FieldGroupOptions, FieldGroupOrientation, FieldProps, FieldVariations, Flex, FlexContainerStyleProps, FlexItemStyleProps, FlexProps, Grid, GridCollectionProps, GridContainerStyleProps, GridItemStyleProps, GridProps, GridSpanType, HTMLElementType, Heading, HeadingLevel, HeadingProps, Icon, Icon360, Icon3dRotation, Icon4k, Icon5g, Icon6FtApart, IconAcUnit, IconAccessAlarm, IconAccessAlarms, IconAccessTime, IconAccessibility, IconAccessibilityNew, IconAccessible, IconAccessibleForward, IconAccountBalance, IconAccountBalanceWallet, IconAccountBox, IconAccountCircle, IconAccountTree, IconAdUnits, IconAdb, IconAdd, IconAddAPhoto, IconAddAlarm, IconAddAlert, IconAddBox, IconAddBusiness, IconAddCircle, IconAddCircleOutline, IconAddComment, IconAddIcCall, IconAddLocation, IconAddLocationAlt, IconAddPhotoAlternate, IconAddRoad, IconAddShoppingCart, IconAddTask, IconAddToHomeScreen, IconAddToPhotos, IconAddToQueue, IconAddchart, IconAdjust, IconAdminPanelSettings, IconAgriculture, IconAirlineSeatFlat, IconAirlineSeatFlatAngled, IconAirlineSeatIndividualSuite, IconAirlineSeatLegroomExtra, IconAirlineSeatLegroomNormal, IconAirlineSeatLegroomReduced, IconAirlineSeatReclineExtra, IconAirlineSeatReclineNormal, IconAirplanemodeActive, IconAirplanemodeInactive, IconAirplay, IconAirportShuttle, IconAlarm, IconAlarmAdd, IconAlarmOff, IconAlarmOn, IconAlbum, IconAllInbox, IconAllInclusive, IconAllOut, IconAltRoute, IconAlternateEmail, IconAmpStories, IconAnalytics, IconAnchor, IconAndroid, IconAnnouncement, IconApartment, IconApi, IconAppBlocking, IconAppSettingsAlt, IconApps, IconArchitecture, IconArchive, IconArrowBack, IconArrowBackIos, IconArrowCircleDown, IconArrowCircleUp, IconArrowDownward, IconArrowDropDown, IconArrowDropDownCircle, IconArrowDropUp, IconArrowForward, IconArrowForwardIos, IconArrowLeft, IconArrowRight, IconArrowRightAlt, IconArrowUpward, IconArtTrack, IconArticle, IconAspectRatio, IconAssessment, IconAssignment, IconAssignmentInd, IconAssignmentLate, IconAssignmentReturn, IconAssignmentReturned, IconAssignmentTurnedIn, IconAssistant, IconAssistantPhoto, IconAtm, IconAttachEmail, IconAttachFile, IconAttachMoney, IconAttachment, IconAttribution, IconAudiotrack, IconAutoDelete, IconAutorenew, IconAvTimer, IconBabyChangingStation, IconBackpack, IconBackspace, IconBackup, IconBackupTable, IconBallot, IconBarChart, IconBatchPrediction, IconBathtub, IconBatteryAlert, IconBatteryChargingFull, IconBatteryFull, IconBatteryStd, IconBatteryUnknown, IconBeachAccess, IconBedtime, IconBeenhere, IconBento, IconBikeScooter, IconBiotech, IconBlock, IconBluetooth, IconBluetoothAudio, IconBluetoothConnected, IconBluetoothDisabled, IconBluetoothSearching, IconBlurCircular, IconBlurLinear, IconBlurOff, IconBlurOn, IconBook, IconBookOnline, IconBookmark, IconBookmarkBorder, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderClear, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderOuter, IconBorderRight, IconBorderStyle, IconBorderTop, IconBorderVertical, IconBrandingWatermark, IconBrightnessAuto, IconBrightnessHigh, IconBrightnessLow, IconBrightnessMedium, IconBrightness_1, IconBrightness_2, IconBrightness_3, IconBrightness_4, IconBrightness_5, IconBrightness_6, IconBrightness_7, IconBrokenImage, IconBrowserNotSupported, IconBrush, IconBubbleChart, IconBugReport, IconBuild, IconBuildCircle, IconBurstMode, IconBusiness, IconBusinessCenter, IconCached, IconCake, IconCalculate, IconCalendarToday, IconCalendarViewDay, IconCall, IconCallEnd, IconCallMade, IconCallMerge, IconCallMissed, IconCallMissedOutgoing, IconCallReceived, IconCallSplit, IconCallToAction, IconCamera, IconCameraAlt, IconCameraEnhance, IconCameraFront, IconCameraRear, IconCameraRoll, IconCampaign, IconCancel, IconCancelPresentation, IconCancelScheduleSend, IconCardGiftcard, IconCardMembership, IconCardTravel, IconCarpenter, IconCasino, IconCast, IconCastConnected, IconCastForEducation, IconCategory, IconCenterFocusStrong, IconCenterFocusWeak, IconChangeHistory, IconChargingStation, IconChat, IconChatBubble, IconChatBubbleOutline, IconCheck, IconCheckBox, IconCheckBoxOutlineBlank, IconCheckCircle, IconCheckCircleOutline, IconCheckroom, IconChevronLeft, IconChevronRight, IconChildCare, IconChildFriendly, IconChromeReaderMode, IconClass, IconCleanHands, IconCleaningServices, IconClear, IconClearAll, IconClose, IconCloseFullscreen, IconClosedCaption, IconClosedCaptionDisabled, IconCloud, IconCloudCircle, IconCloudDone, IconCloudDownload, IconCloudOff, IconCloudQueue, IconCloudUpload, IconCode, IconCollections, IconCollectionsBookmark, IconColorLens, IconColorize, IconComment, IconCommentBank, IconCommute, IconCompare, IconCompareArrows, IconCompassCalibration, IconComputer, IconConfirmationNumber, IconConnectWithoutContact, IconConstruction, IconContactMail, IconContactPage, IconContactPhone, IconContactSupport, IconContactless, IconContacts, IconContentCopy, IconContentCut, IconContentPaste, IconControlCamera, IconControlPoint, IconControlPointDuplicate, IconCopyright, IconCoronavirus, IconCorporateFare, IconCountertops, IconCreate, IconCreateNewFolder, IconCreditCard, IconCrop, IconCropDin, IconCropFree, IconCropLandscape, IconCropOriginal, IconCropPortrait, IconCropRotate, IconCropSquare, IconCrop_16_9, IconCrop_3_2, IconCrop_5_4, IconCrop_7_5, IconDashboard, IconDataUsage, IconDateRange, IconDeck, IconDehaze, IconDelete, IconDeleteForever, IconDeleteOutline, IconDeleteSweep, IconDepartureBoard, IconDescription, IconDesignServices, IconDesktopAccessDisabled, IconDesktopMac, IconDesktopWindows, IconDetails, IconDeveloperBoard, IconDeveloperMode, IconDeviceHub, IconDeviceUnknown, IconDevices, IconDevicesOther, IconDialerSip, IconDialpad, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBus, IconDirectionsCar, IconDirectionsOff, IconDirectionsRailway, IconDirectionsRun, IconDirectionsSubway, IconDirectionsTransit, IconDirectionsWalk, IconDisabledByDefault, IconDiscFull, IconDns, IconDoDisturb, IconDoDisturbAlt, IconDoDisturbOff, IconDoDisturbOn, IconDoNotStep, IconDoNotTouch, IconDock, IconDomain, IconDomainDisabled, IconDomainVerification, IconDone, IconDoneAll, IconDoneOutline, IconDonutLarge, IconDonutSmall, IconDoubleArrow, IconDownload, IconDownloadDone, IconDrafts, IconDragHandle, IconDragIndicator, IconDriveEta, IconDry, IconDuo, IconDvr, IconDynamicFeed, IconDynamicForm, IconEast, IconEco, IconEdit, IconEditAttributes, IconEditLocation, IconEditRoad, IconEject, IconElderly, IconElectricBike, IconElectricCar, IconElectricMoped, IconElectricScooter, IconElectricalServices, IconElevator, IconEmail, IconEmojiEmotions, IconEmojiEvents, IconEmojiFlags, IconEmojiFoodBeverage, IconEmojiNature, IconEmojiObjects, IconEmojiPeople, IconEmojiSymbols, IconEmojiTransportation, IconEngineering, IconEnhancedEncryption, IconEqualizer, IconError, IconErrorOutline, IconEscalator, IconEscalatorWarning, IconEuro, IconEuroSymbol, IconEvStation, IconEvent, IconEventAvailable, IconEventBusy, IconEventNote, IconEventSeat, IconExitToApp, IconExpandLess, IconExpandMore, IconExplicit, IconExplore, IconExploreOff, IconExposure, IconExposureNeg_1, IconExposureNeg_2, IconExposurePlus_1, IconExposurePlus_2, IconExposureZero, IconExtension, IconFace, IconFaceUnlock, IconFacebook, IconFactCheck, IconFamilyRestroom, IconFastForward, IconFastRewind, IconFastfood, IconFavorite, IconFavoriteBorder, IconFeaturedPlayList, IconFeaturedVideo, IconFeedback, IconFence, IconFiberDvr, IconFiberManualRecord, IconFiberNew, IconFiberPin, IconFiberSmartRecord, IconFileCopy, IconFilter, IconFilterAlt, IconFilterBAndW, IconFilterCenterFocus, IconFilterDrama, IconFilterFrames, IconFilterHdr, IconFilterList, IconFilterNone, IconFilterTiltShift, IconFilterVintage, IconFilter_1, IconFilter_2, IconFilter_3, IconFilter_4, IconFilter_5, IconFilter_6, IconFilter_7, IconFilter_8, IconFilter_9, IconFilter_9Plus, IconFindInPage, IconFindReplace, IconFingerprint, IconFireExtinguisher, IconFireplace, IconFirstPage, IconFitnessCenter, IconFlag, IconFlaky, IconFlare, IconFlashAuto, IconFlashOff, IconFlashOn, IconFlight, IconFlightLand, IconFlightTakeoff, IconFlip, IconFlipCameraAndroid, IconFlipCameraIos, IconFlipToBack, IconFlipToFront, IconFolder, IconFolderOpen, IconFolderShared, IconFolderSpecial, IconFollowTheSigns, IconFontDownload, IconFoodBank, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatBold, IconFormatClear, IconFormatColorReset, IconFormatIndentDecrease, IconFormatIndentIncrease, IconFormatItalic, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatListNumberedRtl, IconFormatPaint, IconFormatQuote, IconFormatShapes, IconFormatSize, IconFormatStrikethrough, IconFormatTextdirectionLToR, IconFormatTextdirectionRToL, IconFormatUnderlined, IconForum, IconForward, IconForwardToInbox, IconForward_10, IconForward_30, IconForward_5, IconFoundation, IconFreeBreakfast, IconFullscreen, IconFullscreenExit, IconFunctions, IconGTranslate, IconGamepad, IconGames, IconGavel, IconGesture, IconGetApp, IconGif, IconGolfCourse, IconGpsFixed, IconGpsNotFixed, IconGpsOff, IconGrade, IconGradient, IconGrading, IconGrain, IconGraphicEq, IconGrass, IconGridOff, IconGridOn, IconGroup, IconGroupAdd, IconGroupWork, IconGroups, IconHandyman, IconHd, IconHdrOff, IconHdrOn, IconHdrStrong, IconHdrWeak, IconHeadset, IconHeadsetMic, IconHealing, IconHearing, IconHearingDisabled, IconHeight, IconHelp, IconHelpCenter, IconHelpOutline, IconHighQuality, IconHighlight, IconHighlightAlt, IconHighlightOff, IconHistory, IconHistoryEdu, IconHistoryToggleOff, IconHome, IconHomeRepairService, IconHomeWork, IconHorizontalRule, IconHorizontalSplit, IconHotTub, IconHotel, IconHourglassBottom, IconHourglassDisabled, IconHourglassEmpty, IconHourglassFull, IconHourglassTop, IconHouse, IconHouseSiding, IconHowToReg, IconHowToVote, IconHttp, IconHttps, IconHvac, IconImage, IconImageAspectRatio, IconImageNotSupported, IconImageSearch, IconImportContacts, IconImportExport, IconImportantDevices, IconInbox, IconIndeterminateCheckBox, IconInfo, IconInput, IconInsertChart, IconInsertChartOutlined, IconInsertComment, IconInsertDriveFile, IconInsertEmoticon, IconInsertInvitation, IconInsertLink, IconInsertPhoto, IconInsights, IconIntegrationInstructions, IconInvertColors, IconInvertColorsOff, IconIso, IconKeyboard, IconKeyboardArrowDown, IconKeyboardArrowLeft, IconKeyboardArrowRight, IconKeyboardArrowUp, IconKeyboardBackspace, IconKeyboardCapslock, IconKeyboardHide, IconKeyboardReturn, IconKeyboardTab, IconKeyboardVoice, IconKingBed, IconKitchen, IconLabel, IconLabelImportant, IconLabelOff, IconLandscape, IconLanguage, IconLaptop, IconLaptopChromebook, IconLaptopMac, IconLaptopWindows, IconLastPage, IconLaunch, IconLayers, IconLayersClear, IconLeaderboard, IconLeakAdd, IconLeakRemove, IconLegendToggle, IconLens, IconLibraryAdd, IconLibraryAddCheck, IconLibraryBooks, IconLibraryMusic, IconLightbulb, IconLineStyle, IconLineWeight, IconLinearScale, IconLink, IconLinkOff, IconLinkedCamera, IconList, IconListAlt, IconLiveHelp, IconLiveTv, IconLocalActivity, IconLocalAirport, IconLocalAtm, IconLocalBar, IconLocalCafe, IconLocalCarWash, IconLocalConvenienceStore, IconLocalDining, IconLocalDrink, IconLocalFireDepartment, IconLocalFlorist, IconLocalGasStation, IconLocalGroceryStore, IconLocalHospital, IconLocalHotel, IconLocalLaundryService, IconLocalLibrary, IconLocalMall, IconLocalMovies, IconLocalOffer, IconLocalParking, IconLocalPharmacy, IconLocalPhone, IconLocalPizza, IconLocalPlay, IconLocalPolice, IconLocalPostOffice, IconLocalPrintshop, IconLocalSee, IconLocalShipping, IconLocalTaxi, IconLocationCity, IconLocationDisabled, IconLocationOff, IconLocationOn, IconLocationSearching, IconLock, IconLockOpen, IconLogin, IconLooks, IconLooksOne, IconLooksTwo, IconLooks_3, IconLooks_4, IconLooks_5, IconLooks_6, IconLoop, IconLoupe, IconLowPriority, IconLoyalty, IconLuggage, IconMail, IconMailOutline, IconMap, IconMapsUgc, IconMarkChatRead, IconMarkChatUnread, IconMarkEmailRead, IconMarkEmailUnread, IconMarkunread, IconMarkunreadMailbox, IconMasks, IconMaximize, IconMediation, IconMedicalServices, IconMeetingRoom, IconMemory, IconMenu, IconMenuBook, IconMenuOpen, IconMergeType, IconMessage, IconMic, IconMicNone, IconMicOff, IconMicrowave, IconMilitaryTech, IconMinimize, IconMiscellaneousServices, IconMissedVideoCall, IconMms, IconMobileFriendly, IconMobileOff, IconMobileScreenShare, IconMode, IconModeComment, IconModelTraining, IconMonetizationOn, IconMoney, IconMoneyOff, IconMoneyOffCsred, IconMonochromePhotos, IconMood, IconMoodBad, IconMoped, IconMore, IconMoreHoriz, IconMoreTime, IconMoreVert, IconMotionPhotosOn, IconMotionPhotosPause, IconMotionPhotosPaused, IconMouse, IconMoveToInbox, IconMovie, IconMovieCreation, IconMovieFilter, IconMultilineChart, IconMultipleStop, IconMuseum, IconMusicNote, IconMusicOff, IconMusicVideo, IconMyLocation, IconNat, IconNature, IconNaturePeople, IconNavigateBefore, IconNavigateNext, IconNavigation, IconNearMe, IconNearMeDisabled, IconNetworkCheck, IconNetworkLocked, IconNewReleases, IconNextPlan, IconNextWeek, IconNfc, IconNightShelter, IconNightsStay, IconNoBackpack, IconNoCell, IconNoDrinks, IconNoEncryption, IconNoEncryptionGmailerrorred, IconNoFlash, IconNoFood, IconNoLuggage, IconNoMeals, IconNoMeetingRoom, IconNoPhotography, IconNoSim, IconNoStroller, IconNoTransfer, IconNorth, IconNorthEast, IconNorthWest, IconNotAccessible, IconNotInterested, IconNotListedLocation, IconNotStarted, IconNote, IconNoteAdd, IconNotes, IconNotificationImportant, IconNotifications, IconNotificationsActive, IconNotificationsNone, IconNotificationsOff, IconNotificationsPaused, IconOfflineBolt, IconOfflinePin, IconOndemandVideo, IconOnlinePrediction, IconOpacity, IconOpenInBrowser, IconOpenInFull, IconOpenInNew, IconOpenWith, IconOutbond, IconOutdoorGrill, IconOutlet, IconOutlinedFlag, IconPages, IconPageview, IconPalette, IconPanTool, IconPanorama, IconPanoramaFishEye, IconPanoramaHorizontal, IconPanoramaVertical, IconPanoramaWideAngle, IconPartyMode, IconPause, IconPauseCircleFilled, IconPauseCircleOutline, IconPausePresentation, IconPayment, IconPayments, IconPedalBike, IconPending, IconPendingActions, IconPeople, IconPeopleAlt, IconPeopleOutline, IconPermCameraMic, IconPermContactCalendar, IconPermDataSetting, IconPermDeviceInformation, IconPermIdentity, IconPermMedia, IconPermPhoneMsg, IconPermScanWifi, IconPerson, IconPersonAdd, IconPersonAddAlt_1, IconPersonAddDisabled, IconPersonOutline, IconPersonPin, IconPersonPinCircle, IconPersonRemove, IconPersonRemoveAlt_1, IconPersonSearch, IconPersonalVideo, IconPestControl, IconPestControlRodent, IconPets, IconPhone, IconPhoneAndroid, IconPhoneBluetoothSpeaker, IconPhoneCallback, IconPhoneDisabled, IconPhoneEnabled, IconPhoneForwarded, IconPhoneInTalk, IconPhoneIphone, IconPhoneLocked, IconPhoneMissed, IconPhonePaused, IconPhonelink, IconPhonelinkErase, IconPhonelinkLock, IconPhonelinkOff, IconPhonelinkRing, IconPhonelinkSetup, IconPhoto, IconPhotoAlbum, IconPhotoCamera, IconPhotoFilter, IconPhotoLibrary, IconPhotoSizeSelectActual, IconPhotoSizeSelectLarge, IconPhotoSizeSelectSmall, IconPictureAsPdf, IconPictureInPicture, IconPictureInPictureAlt, IconPieChart, IconPieChartOutline, IconPinDrop, IconPlace, IconPlagiarism, IconPlayArrow, IconPlayCircleFilled, IconPlayCircleOutline, IconPlayForWork, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistPlay, IconPlumbing, IconPlusOne, IconPointOfSale, IconPolicy, IconPoll, IconPolymer, IconPool, IconPortableWifiOff, IconPortrait, IconPostAdd, IconPower, IconPowerInput, IconPowerOff, IconPowerSettingsNew, IconPrecisionManufacturing, IconPregnantWoman, IconPresentToAll, IconPreview, IconPrint, IconPrintDisabled, IconPriorityHigh, IconPrivacyTip, IconProps, IconPsychology, IconPublic, IconPublicOff, IconPublish, IconPublishedWithChanges, IconPushPin, IconQrCode, IconQrCodeScanner, IconQueryBuilder, IconQuestionAnswer, IconQueue, IconQueueMusic, IconQueuePlayNext, IconQuickreply, IconRadio, IconRadioButtonChecked, IconRadioButtonUnchecked, IconRateReview, IconReadMore, IconReceipt, IconReceiptLong, IconRecentActors, IconRecordVoiceOver, IconRedeem, IconRedo, IconReduceCapacity, IconRefresh, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRemoveFromQueue, IconRemoveRedEye, IconRemoveShoppingCart, IconReorder, IconRepeat, IconRepeatOne, IconReplay, IconReplay_10, IconReplay_30, IconReplay_5, IconReply, IconReplyAll, IconReport, IconReportGmailerrorred, IconReportOff, IconReportProblem, IconRequestPage, IconRequestQuote, IconRestaurant, IconRestaurantMenu, IconRestore, IconRestoreFromTrash, IconRestorePage, IconRingVolume, IconRoofing, IconRoom, IconRoomPreferences, IconRoomService, IconRotateLeft, IconRotateRight, IconRotate_90DegreesCcw, IconRoundedCorner, IconRouter, IconRowing, IconRssFeed, IconRule, IconRuleFolder, IconRunCircle, IconRvHookup, IconSanitizer, IconSatellite, IconSave, IconSaveAlt, IconScanner, IconScatterPlot, IconSchedule, IconSchool, IconScience, IconScore, IconScreenLockLandscape, IconScreenLockPortrait, IconScreenLockRotation, IconScreenRotation, IconScreenShare, IconSdCard, IconSdCardAlert, IconSdStorage, IconSearch, IconSearchOff, IconSecurity, IconSelectAll, IconSelfImprovement, IconSend, IconSensorDoor, IconSensorWindow, IconSentimentDissatisfied, IconSentimentNeutral, IconSentimentSatisfied, IconSentimentSatisfiedAlt, IconSentimentVeryDissatisfied, IconSentimentVerySatisfied, IconSetMeal, IconSettings, IconSettingsApplications, IconSettingsBackupRestore, IconSettingsBluetooth, IconSettingsBrightness, IconSettingsCell, IconSettingsEthernet, IconSettingsInputAntenna, IconSettingsInputComponent, IconSettingsInputComposite, IconSettingsInputHdmi, IconSettingsInputSvideo, IconSettingsOverscan, IconSettingsPhone, IconSettingsPower, IconSettingsRemote, IconSettingsSystemDaydream, IconSettingsVoice, IconShare, IconShop, IconShopTwo, IconShoppingBag, IconShoppingBasket, IconShoppingCart, IconShortText, IconShowChart, IconShuffle, IconShutterSpeed, IconSick, IconSignalCellularAlt, IconSignalCellularConnectedNoInternet_4Bar, IconSignalCellularNoSim, IconSignalCellularNull, IconSignalCellularOff, IconSignalCellular_4Bar, IconSignalWifiOff, IconSignalWifi_4Bar, IconSignalWifi_4BarLock, IconSimCard, IconSingleBed, IconSize, IconSkipNext, IconSkipPrevious, IconSlideshow, IconSlowMotionVideo, IconSmartButton, IconSmartphone, IconSmokeFree, IconSmokingRooms, IconSms, IconSmsFailed, IconSnippetFolder, IconSnooze, IconSoap, IconSort, IconSortByAlpha, IconSource, IconSouth, IconSouthEast, IconSouthWest, IconSpa, IconSpaceBar, IconSpeaker, IconSpeakerGroup, IconSpeakerNotes, IconSpeakerNotesOff, IconSpeakerPhone, IconSpeed, IconSpellcheck, IconSports, IconSportsBar, IconSportsBaseball, IconSportsBasketball, IconSportsCricket, IconSportsEsports, IconSportsFootball, IconSportsGolf, IconSportsHandball, IconSportsHockey, IconSportsKabaddi, IconSportsMma, IconSportsMotorsports, IconSportsRugby, IconSportsSoccer, IconSportsTennis, IconSportsVolleyball, IconSquareFoot, IconStackedLineChart, IconStairs, IconStar, IconStarBorder, IconStarBorderPurple500, IconStarHalf, IconStarOutline, IconStarPurple500, IconStarRate, IconStars, IconStayCurrentLandscape, IconStayCurrentPortrait, IconStayPrimaryLandscape, IconStayPrimaryPortrait, IconStickyNote_2, IconStop, IconStopCircle, IconStopScreenShare, IconStorage, IconStore, IconStoreMallDirectory, IconStorefront, IconStraighten, IconStreetview, IconStrikethroughS, IconStroller, IconStyle, IconSubdirectoryArrowLeft, IconSubdirectoryArrowRight, IconSubject, IconSubscript, IconSubscriptions, IconSubtitles, IconSubtitlesOff, IconSubway, IconSuperscript, IconSupervisedUserCircle, IconSupervisorAccount, IconSupport, IconSupportAgent, IconSurroundSound, IconSwapCalls, IconSwapHoriz, IconSwapHorizontalCircle, IconSwapVert, IconSwapVerticalCircle, IconSwitchCamera, IconSwitchLeft, IconSwitchRight, IconSwitchVideo, IconSync, IconSyncAlt, IconSyncDisabled, IconSyncProblem, IconSystemUpdate, IconSystemUpdateAlt, IconTab, IconTabUnselected, IconTableChart, IconTableRows, IconTableView, IconTablet, IconTabletAndroid, IconTabletMac, IconTagFaces, IconTapAndPlay, IconTapas, IconTerrain, IconTextFields, IconTextFormat, IconTextRotateUp, IconTextRotateVertical, IconTextRotationAngledown, IconTextRotationAngleup, IconTextRotationDown, IconTextRotationNone, IconTextSnippet, IconTextsms, IconTexture, IconTheaters, IconThermostat, IconThumbDown, IconThumbDownAlt, IconThumbUp, IconThumbUpAlt, IconThumbsUpDown, IconTimeToLeave, IconTimelapse, IconTimeline, IconTimer, IconTimerOff, IconTimer_10, IconTimer_3, IconTitle, IconToc, IconToday, IconToggleOff, IconToggleOn, IconToll, IconTonality, IconTopic, IconTouchApp, IconTour, IconToys, IconTrackChanges, IconTraffic, IconTrain, IconTram, IconTransferWithinAStation, IconTransform, IconTransitEnterexit, IconTranslate, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTripOrigin, IconTty, IconTune, IconTurnedIn, IconTurnedInNot, IconTv, IconTvOff, IconTwoWheeler, IconUmbrella, IconUnarchive, IconUndo, IconUnfoldLess, IconUnfoldMore, IconUnpublished, IconUnsubscribe, IconUpdate, IconUpgrade, IconUpload, IconUsb, IconVerified, IconVerifiedUser, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalSplit, IconVibration, IconVideoCall, IconVideoLabel, IconVideoLibrary, IconVideoSettings, IconVideocam, IconVideocamOff, IconVideogameAsset, IconViewAgenda, IconViewArray, IconViewCarousel, IconViewColumn, IconViewComfy, IconViewCompact, IconViewDay, IconViewHeadline, IconViewList, IconViewModule, IconViewQuilt, IconViewSidebar, IconViewStream, IconViewWeek, IconVignette, IconVisibility, IconVisibilityOff, IconVoiceChat, IconVoiceOverOff, IconVoicemail, IconVolumeDown, IconVolumeMute, IconVolumeOff, IconVolumeUp, IconVpnKey, IconVpnLock, IconWallpaper, IconWarning, IconWarningAmber, IconWash, IconWatch, IconWatchLater, IconWaterDamage, IconWaves, IconWbAuto, IconWbCloudy, IconWbIncandescent, IconWbIridescent, IconWbSunny, IconWc, IconWeb, IconWebAsset, IconWeekend, IconWest, IconWhatshot, IconWheelchairPickup, IconWhereToVote, IconWidgets, IconWifi, IconWifiCalling, IconWifiLock, IconWifiOff, IconWifiProtectedSetup, IconWifiTethering, IconWineBar, IconWork, IconWorkOff, IconWorkOutline, IconWrapText, IconWrongLocation, IconWysiwyg, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut, IconZoomOutMap, Image, ImageOptions, ImageProps, ImageStyleProps, InputMode, InputProps, InputSizes, LabelPositions, LabelProps, Link, LinkOptions, LinkProps, ListCollectionProps, Loader, LoaderProps, LoaderSizes, LoaderVariations, Menu, MenuButton, MenuItem, MenuItemProps, MenuProps, Pagination, PaginationCallbackType, PaginationItemProps, PaginationItemType, PaginationProps, PasswordField, PasswordFieldProps, PasswordFieldType, PhoneNumberField, PhoneNumberFieldProps, Placeholder, PlaceholderProps, PlaceholderSizes, Primitive, PrimitiveProps, PrimitivePropsWithRef, Radio, RadioGroupField, RadioGroupFieldProps, RadioProps, Rating, RatingOptions, RatingProps, RatingSizes, ResponsiveObject, ResponsiveStyle, ScrollView, ScrollViewProps, SearchField, SearchFieldButtonProps, SearchFieldProps, SelectField, SelectFieldProps, SharedText, ShowPasswordButtonProps, Sizes, SliderField, SliderFieldProps, StepperField, StepperFieldProps, StyleProp, SwitchField, SwitchFieldProps, TabItem, TabItemProps, Table, TableBody, TableBodyProps, TableCell, TableCellElement, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, TableSize, TableVariation, Tabs, TabsProps, TabsSpacing, Text, TextAreaField, TextAreaFieldMultilineProps, TextAreaFieldProps, TextAreaProps, TextAreaStyleProps, TextField, TextFieldOptions, TextFieldProps, TextInputFieldProps, TextProps, TextVariation, Theme, ToggleButton, ToggleButtonGroup, ToggleButtonGroupProps, ToggleButtonProps, UsePaginationProps, UsePaginationResult, UseSearchFieldProps, View, ViewBox, ViewProps, VisuallyHidden, VisuallyHiddenProps, index$1 as components, index as primitives, useAmplify, useAuthenticator, usePagination, useTheme, withAuthenticator };
|