@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
436 lines (435 loc) • 32.1 kB
TypeScript
import type { MaskInputProps } from './MaskInput';
export declare function useMaskInputProps(props: MaskInputProps & {
ref?: React.Ref<HTMLInputElement>;
}): {
maskRef: import("react").RefCallback<HTMLInputElement>;
elementProps: {
className?: string | undefined;
style?: import("../..").MantineStyleProp;
__vars?: import("../..").CssVarsProp;
__size?: string;
hiddenFrom?: import("../..").MantineBreakpoint;
visibleFrom?: import("../..").MantineBreakpoint;
lightHidden?: boolean;
darkHidden?: boolean;
mod?: import("../..").BoxMod;
m?: import("../..").StyleProp<import("../..").MantineSpacing>;
my?: import("../..").StyleProp<import("../..").MantineSpacing>;
mx?: import("../..").StyleProp<import("../..").MantineSpacing>;
mt?: import("../..").StyleProp<import("../..").MantineSpacing>;
mb?: import("../..").StyleProp<import("../..").MantineSpacing>;
ms?: import("../..").StyleProp<import("../..").MantineSpacing>;
me?: import("../..").StyleProp<import("../..").MantineSpacing>;
mis?: import("../..").StyleProp<import("../..").MantineSpacing>;
mie?: import("../..").StyleProp<import("../..").MantineSpacing>;
ml?: import("../..").StyleProp<import("../..").MantineSpacing>;
mr?: import("../..").StyleProp<import("../..").MantineSpacing>;
p?: import("../..").StyleProp<import("../..").MantineSpacing>;
py?: import("../..").StyleProp<import("../..").MantineSpacing>;
px?: import("../..").StyleProp<import("../..").MantineSpacing>;
pt?: import("../..").StyleProp<import("../..").MantineSpacing>;
pb?: import("../..").StyleProp<import("../..").MantineSpacing>;
ps?: import("../..").StyleProp<import("../..").MantineSpacing>;
pe?: import("../..").StyleProp<import("../..").MantineSpacing>;
pis?: import("../..").StyleProp<import("../..").MantineSpacing>;
pie?: import("../..").StyleProp<import("../..").MantineSpacing>;
pl?: import("../..").StyleProp<import("../..").MantineSpacing>;
pr?: import("../..").StyleProp<import("../..").MantineSpacing>;
bd?: import("../..").StyleProp<React.CSSProperties["border"]>;
bdrs?: import("../..").StyleProp<import("../..").MantineSpacing>;
bg?: import("../..").StyleProp<import("../..").MantineColor>;
c?: import("../..").StyleProp<import("../..").MantineColor>;
opacity?: import("../..").StyleProp<React.CSSProperties["opacity"]>;
ff?: import("../..").StyleProp<"monospace" | "text" | "heading" | (string & {})>;
fz?: import("../..").StyleProp<import("../..").MantineFontSize | `h${1 | 2 | 3 | 4 | 5 | 6}` | number | (string & {})>;
fw?: import("../..").StyleProp<React.CSSProperties["fontWeight"]>;
lts?: import("../..").StyleProp<React.CSSProperties["letterSpacing"]>;
ta?: import("../..").StyleProp<React.CSSProperties["textAlign"]>;
lh?: import("../..").StyleProp<import("../..").MantineLineHeight | `h${1 | 2 | 3 | 4 | 5 | 6}` | number | (string & {})>;
fs?: import("../..").StyleProp<React.CSSProperties["fontStyle"]>;
tt?: import("../..").StyleProp<React.CSSProperties["textTransform"]>;
td?: import("../..").StyleProp<React.CSSProperties["textDecoration"]>;
w?: import("../..").StyleProp<React.CSSProperties["width"]>;
miw?: import("../..").StyleProp<React.CSSProperties["minWidth"]>;
maw?: import("../..").StyleProp<React.CSSProperties["maxWidth"]>;
h?: import("../..").StyleProp<React.CSSProperties["height"]>;
mih?: import("../..").StyleProp<React.CSSProperties["minHeight"]>;
mah?: import("../..").StyleProp<React.CSSProperties["maxHeight"]>;
bgsz?: import("../..").StyleProp<React.CSSProperties["backgroundSize"]>;
bgp?: import("../..").StyleProp<React.CSSProperties["backgroundPosition"]>;
bgr?: import("../..").StyleProp<React.CSSProperties["backgroundRepeat"]>;
bga?: import("../..").StyleProp<React.CSSProperties["backgroundAttachment"]>;
pos?: import("../..").StyleProp<React.CSSProperties["position"]>;
top?: import("../..").StyleProp<React.CSSProperties["top"]>;
left?: import("../..").StyleProp<React.CSSProperties["left"]>;
bottom?: import("../..").StyleProp<React.CSSProperties["bottom"]>;
right?: import("../..").StyleProp<React.CSSProperties["right"]>;
inset?: import("../..").StyleProp<React.CSSProperties["inset"]>;
display?: import("../..").StyleProp<React.CSSProperties["display"]>;
flex?: import("../..").StyleProp<React.CSSProperties["flex"]>;
wrapperProps?: import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & import("../..").DataAttributes;
label?: React.ReactNode;
description?: React.ReactNode;
error?: React.ReactNode;
success?: React.ReactNode;
required?: boolean;
withAsterisk?: boolean;
labelProps?: import("..").InputLabelProps & import("../..").DataAttributes;
descriptionProps?: import("..").InputDescriptionProps & import("../..").DataAttributes;
errorProps?: import("..").InputErrorProps & import("../..").DataAttributes;
successProps?: import("..").InputSuccessProps & import("../..").DataAttributes;
inputContainer?: (children: React.ReactNode) => React.ReactNode;
inputWrapperOrder?: ("label" | "input" | "description" | "error")[];
leftSection?: React.ReactNode;
leftSectionWidth?: React.CSSProperties["width"];
leftSectionProps?: React.ComponentProps<"div">;
leftSectionPointerEvents?: React.CSSProperties["pointerEvents"];
rightSection?: React.ReactNode;
rightSectionWidth?: React.CSSProperties["width"];
rightSectionProps?: React.ComponentProps<"div">;
rightSectionPointerEvents?: React.CSSProperties["pointerEvents"];
radius?: import("../..").MantineRadius;
disabled?: boolean;
size?: import("../..").MantineSize | (string & {});
pointer?: boolean;
withErrorStyles?: boolean;
withSuccessStyles?: boolean;
inputSize?: string;
__clearSection?: React.ReactNode;
__clearable?: boolean;
__clearSectionMode?: import("..").ClearSectionMode;
__defaultRightSection?: React.ReactNode;
loading?: boolean;
loadingPosition?: "left" | "right";
__bottomSection?: React.ReactNode;
__bottomSectionProps?: React.ComponentProps<"div">;
unstyled?: boolean;
variant?: (string & {}) | import("..").InputVariant | undefined;
classNames?: Partial<Record<import("..").__InputStylesNames, string | undefined>> | ((theme: import("../..").MantineTheme, props: MaskInputProps, ctx: unknown) => Partial<Record<import("..").__InputStylesNames, string | undefined>>) | undefined;
styles?: Partial<Record<import("..").__InputStylesNames, import("../..").CSSProperties>> | ((theme: import("../..").MantineTheme, props: MaskInputProps, ctx: unknown) => Partial<Record<import("..").__InputStylesNames, import("../..").CSSProperties>>) | undefined;
vars?: import("../..").PartialVarsResolver<{
props: MaskInputProps;
variant: import("..").InputVariant;
ref: HTMLInputElement;
stylesNames: import("..").__InputStylesNames;
}> | undefined;
attributes?: {
input?: Record<string, any> | undefined;
label?: Record<string, any> | undefined;
section?: Record<string, any> | undefined;
root?: Record<string, any> | undefined;
error?: Record<string, any> | undefined;
description?: Record<string, any> | undefined;
required?: Record<string, any> | undefined;
success?: Record<string, any> | undefined;
wrapper?: Record<string, any> | undefined;
bottomSection?: Record<string, any> | undefined;
} | undefined;
form?: string | undefined | undefined;
slot?: string | undefined | undefined;
title?: string | undefined | undefined;
pattern?: string | undefined | undefined;
onKeyDown?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
dir?: string | undefined | undefined;
popover?: "" | "auto" | "manual" | "hint" | undefined | undefined;
max?: number | string | undefined | undefined;
hidden?: boolean | undefined | undefined;
color?: string | undefined | undefined;
content?: string | undefined | undefined;
height?: number | string | undefined | undefined;
translate?: "yes" | "no" | undefined | undefined;
width?: number | string | undefined | undefined;
multiple?: boolean | undefined | undefined;
key?: import("react").Key | null | undefined;
type?: import("react").HTMLInputTypeAttribute | undefined;
defaultChecked?: boolean | undefined | undefined;
defaultValue?: string | number | readonly string[] | undefined;
suppressContentEditableWarning?: boolean | undefined | undefined;
suppressHydrationWarning?: boolean | undefined | undefined;
accessKey?: string | undefined | undefined;
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
autoFocus?: boolean | undefined | undefined;
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
contextMenu?: string | undefined | undefined;
draggable?: (boolean | "false" | "true") | undefined;
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
id?: string | undefined | undefined;
lang?: string | undefined | undefined;
nonce?: string | undefined | undefined;
spellCheck?: (boolean | "false" | "true") | undefined;
tabIndex?: number | undefined | undefined;
radioGroup?: string | undefined | undefined;
role?: import("react").AriaRole | undefined;
about?: string | undefined | undefined;
datatype?: string | undefined | undefined;
inlist?: any;
prefix?: string | undefined | undefined;
property?: string | undefined | undefined;
rel?: string | undefined | undefined;
resource?: string | undefined | undefined;
rev?: string | undefined | undefined;
typeof?: string | undefined | undefined;
vocab?: string | undefined | undefined;
autoCorrect?: string | undefined | undefined;
autoSave?: string | undefined | undefined;
itemProp?: string | undefined | undefined;
itemScope?: boolean | undefined | undefined;
itemType?: string | undefined | undefined;
itemID?: string | undefined | undefined;
itemRef?: string | undefined | undefined;
results?: number | undefined | undefined;
security?: string | undefined | undefined;
unselectable?: "on" | "off" | undefined | undefined;
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
popoverTarget?: string | undefined | undefined;
inert?: boolean | undefined | undefined;
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
is?: string | undefined | undefined;
exportparts?: string | undefined | undefined;
part?: string | undefined | undefined;
"aria-activedescendant"?: string | undefined | undefined;
"aria-atomic"?: (boolean | "false" | "true") | undefined;
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
"aria-braillelabel"?: string | undefined | undefined;
"aria-brailleroledescription"?: string | undefined | undefined;
"aria-busy"?: (boolean | "false" | "true") | undefined;
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
"aria-colcount"?: number | undefined | undefined;
"aria-colindex"?: number | undefined | undefined;
"aria-colindextext"?: string | undefined | undefined;
"aria-colspan"?: number | undefined | undefined;
"aria-controls"?: string | undefined | undefined;
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
"aria-describedby"?: string | undefined | undefined;
"aria-description"?: string | undefined | undefined;
"aria-details"?: string | undefined | undefined;
"aria-disabled"?: (boolean | "false" | "true") | undefined;
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
"aria-errormessage"?: string | undefined | undefined;
"aria-expanded"?: (boolean | "false" | "true") | undefined;
"aria-flowto"?: string | undefined | undefined;
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
"aria-hidden"?: (boolean | "false" | "true") | undefined;
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
"aria-keyshortcuts"?: string | undefined | undefined;
"aria-label"?: string | undefined | undefined;
"aria-labelledby"?: string | undefined | undefined;
"aria-level"?: number | undefined | undefined;
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
"aria-modal"?: (boolean | "false" | "true") | undefined;
"aria-multiline"?: (boolean | "false" | "true") | undefined;
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
"aria-owns"?: string | undefined | undefined;
"aria-placeholder"?: string | undefined | undefined;
"aria-posinset"?: number | undefined | undefined;
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
"aria-readonly"?: (boolean | "false" | "true") | undefined;
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
"aria-required"?: (boolean | "false" | "true") | undefined;
"aria-roledescription"?: string | undefined | undefined;
"aria-rowcount"?: number | undefined | undefined;
"aria-rowindex"?: number | undefined | undefined;
"aria-rowindextext"?: string | undefined | undefined;
"aria-rowspan"?: number | undefined | undefined;
"aria-selected"?: (boolean | "false" | "true") | undefined;
"aria-setsize"?: number | undefined | undefined;
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
"aria-valuemax"?: number | undefined | undefined;
"aria-valuemin"?: number | undefined | undefined;
"aria-valuenow"?: number | undefined | undefined;
"aria-valuetext"?: string | undefined | undefined;
children?: import("react").ReactNode;
dangerouslySetInnerHTML?: {
__html: string | TrustedHTML;
} | undefined | undefined;
onCopy?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
onCut?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
onCutCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
onPaste?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
onPasteCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
onCompositionEnd?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
onCompositionStart?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
onFocusCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
onBlurCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
onChange?: import("react").ChangeEventHandler<HTMLInputElement, HTMLInputElement> | undefined;
onChangeCapture?: import("react").ChangeEventHandler<HTMLInputElement, Element> | undefined;
onBeforeInput?: import("react").InputEventHandler<HTMLInputElement> | undefined;
onBeforeInputCapture?: import("react").InputEventHandler<HTMLInputElement> | undefined;
onInput?: import("react").InputEventHandler<HTMLInputElement> | undefined;
onInputCapture?: import("react").InputEventHandler<HTMLInputElement> | undefined;
onReset?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onResetCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onSubmit?: import("react").SubmitEventHandler<HTMLInputElement> | undefined;
onSubmitCapture?: import("react").SubmitEventHandler<HTMLInputElement> | undefined;
onInvalid?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onInvalidCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onLoad?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onLoadCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onError?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onErrorCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
onKeyPress?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
onKeyUp?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
onAbort?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onAbortCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onCanPlay?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onCanPlayCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onCanPlayThrough?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onDurationChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onEmptied?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onEmptiedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onEncrypted?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onEncryptedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onEnded?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onEndedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onLoadedData?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onLoadedMetadata?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onLoadStart?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onLoadStartCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onPause?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onPauseCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onPlay?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onPlayCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onPlaying?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onPlayingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onProgress?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onProgressCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onRateChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onRateChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onSeeked?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onSeekedCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onSeeking?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onSeekingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onStalled?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onStalledCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onSuspend?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onSuspendCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onTimeUpdate?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onVolumeChange?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onWaiting?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onWaitingCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onAuxClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onAuxClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onContextMenu?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onContextMenuCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onDoubleClick?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onDrag?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragEnd?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragEndCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragEnter?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragEnterCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragExit?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragExitCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragLeave?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragLeaveCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragOver?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragOverCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragStart?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDragStartCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDrop?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onDropCapture?: import("react").DragEventHandler<HTMLInputElement> | undefined;
onMouseDown?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseDownCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseEnter?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseLeave?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseMove?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseOut?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseOutCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseOver?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseOverCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseUp?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onMouseUpCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
onSelect?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onSelectCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
onTouchCancel?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
onTouchEnd?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
onTouchEndCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
onTouchMove?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
onTouchStart?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
onTouchStartCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
onPointerDown?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerDownCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerMove?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerUp?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerUpCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerCancel?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerEnter?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerLeave?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerOver?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerOverCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerOut?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onPointerOutCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onGotPointerCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onLostPointerCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLInputElement> | undefined;
onScroll?: import("react").UIEventHandler<HTMLInputElement> | undefined;
onScrollCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
onScrollEnd?: import("react").UIEventHandler<HTMLInputElement> | undefined;
onScrollEndCapture?: import("react").UIEventHandler<HTMLInputElement> | undefined;
onWheel?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
onWheelCapture?: import("react").WheelEventHandler<HTMLInputElement> | undefined;
onAnimationStart?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
onAnimationEnd?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
onAnimationIteration?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement> | undefined;
onToggle?: import("react").ToggleEventHandler<HTMLInputElement> | undefined;
onBeforeToggle?: import("react").ToggleEventHandler<HTMLInputElement> | undefined;
onTransitionCancel?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
onTransitionRun?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
onTransitionStart?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
value?: string | number | readonly string[] | undefined;
name?: string | undefined | undefined;
src?: string | undefined | undefined;
list?: string | undefined | undefined;
step?: number | string | undefined | undefined;
min?: number | string | undefined | undefined;
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
formEncType?: string | undefined | undefined;
formMethod?: string | undefined | undefined;
formNoValidate?: boolean | undefined | undefined;
formTarget?: string | undefined | undefined;
capture?: boolean | "user" | "environment" | undefined | undefined;
placeholder?: string | undefined | undefined;
accept?: string | undefined | undefined;
alt?: string | undefined | undefined;
autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
checked?: boolean | undefined | undefined;
maxLength?: number | undefined | undefined;
minLength?: number | undefined | undefined;
readOnly?: boolean | undefined | undefined;
};
};