@xyo-network/react-xns 4.4.9 → 4.4.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/browser/components/EstimateName/EstimateNameTextField.d.ts +7 -0
  2. package/dist/browser/components/EstimateName/EstimateNameTextField.d.ts.map +1 -0
  3. package/dist/browser/components/EstimateName/index.d.ts +2 -0
  4. package/dist/browser/components/EstimateName/index.d.ts.map +1 -0
  5. package/dist/browser/components/XnsNameCapture/Errors.d.ts +8 -0
  6. package/dist/browser/components/XnsNameCapture/Errors.d.ts.map +1 -0
  7. package/dist/browser/components/XnsNameCapture/Props.d.ts +41 -0
  8. package/dist/browser/components/XnsNameCapture/Props.d.ts.map +1 -0
  9. package/dist/browser/components/XnsNameCapture/SecondaryLink.d.ts +11 -0
  10. package/dist/browser/components/XnsNameCapture/SecondaryLink.d.ts.map +1 -0
  11. package/dist/browser/components/XnsNameCapture/XnsNameCapture.d.ts +4 -0
  12. package/dist/browser/components/XnsNameCapture/XnsNameCapture.d.ts.map +1 -0
  13. package/dist/browser/components/XnsNameCapture/XnsNameCaptureWithContext.d.ts +4 -0
  14. package/dist/browser/components/XnsNameCapture/XnsNameCaptureWithContext.d.ts.map +1 -0
  15. package/dist/browser/components/XnsNameCapture/hooks/index.d.ts +2 -0
  16. package/dist/browser/components/XnsNameCapture/hooks/index.d.ts.map +1 -0
  17. package/dist/browser/components/XnsNameCapture/hooks/routing/index.d.ts +3 -0
  18. package/dist/browser/components/XnsNameCapture/hooks/routing/index.d.ts.map +1 -0
  19. package/dist/browser/components/XnsNameCapture/hooks/routing/useXnsNameCaptureRouting.d.ts +400 -0
  20. package/dist/browser/components/XnsNameCapture/hooks/routing/useXnsNameCaptureRouting.d.ts.map +1 -0
  21. package/dist/browser/components/XnsNameCapture/hooks/routing/useXnsNameFromLocation.d.ts +6 -0
  22. package/dist/browser/components/XnsNameCapture/hooks/routing/useXnsNameFromLocation.d.ts.map +1 -0
  23. package/dist/browser/components/XnsNameCapture/index.d.ts +7 -0
  24. package/dist/browser/components/XnsNameCapture/index.d.ts.map +1 -0
  25. package/dist/browser/components/XnsNameCapture/lib/index.d.ts +2 -0
  26. package/dist/browser/components/XnsNameCapture/lib/index.d.ts.map +1 -0
  27. package/dist/browser/components/XnsNameCapture/lib/navigateWithUsername.d.ts +3 -0
  28. package/dist/browser/components/XnsNameCapture/lib/navigateWithUsername.d.ts.map +1 -0
  29. package/dist/browser/components/index.d.ts +3 -0
  30. package/dist/browser/components/index.d.ts.map +1 -0
  31. package/dist/browser/index.d.ts +2 -467
  32. package/dist/browser/index.d.ts.map +1 -0
  33. package/package.json +11 -11
@@ -0,0 +1,400 @@
1
+ import type { XnsNameCaptureProps } from '../../Props.ts';
2
+ export declare const useXnsNameCaptureRouting: (props: XnsNameCaptureProps) => {
3
+ defaultXnsName: string | undefined;
4
+ routingError: Error | undefined;
5
+ navigate: (to: string) => void;
6
+ paramsString: string;
7
+ autoFocus?: boolean;
8
+ buttonText?: string;
9
+ errorUi?: "alert" | "toast";
10
+ mobileButtonText?: string;
11
+ onNameChange?: (name: string) => void;
12
+ showSecondary?: boolean | import("react").ReactNode;
13
+ funnel?: string;
14
+ intent?: string;
15
+ placement?: string;
16
+ onCaptureName?: (name: string) => Promise<void>;
17
+ to?: import("react-router-dom").To;
18
+ background?: boolean;
19
+ paper?: boolean;
20
+ busy?: boolean;
21
+ busyCircularProps?: import("@xylabs/react-shared").BusyCircularProgressProps;
22
+ busyColor?: import("@xylabs/react-shared").MaterialUIThemeColor;
23
+ busyLinearProps?: import("@xylabs/react-shared").BusyLinearProgressProps;
24
+ busyMinimum?: number;
25
+ busyOpacity?: string | number;
26
+ busySize?: number;
27
+ busyVariant?: import("@xylabs/react-shared").BusyVariant;
28
+ classes?: Partial<import("@mui/material").ClassNameMap<never>> | undefined;
29
+ className?: string | undefined;
30
+ style?: React.CSSProperties | undefined;
31
+ children?: import("react").ReactNode;
32
+ color?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined>);
33
+ margin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined>);
34
+ sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
35
+ p?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined>);
36
+ slot?: string | undefined | undefined;
37
+ title?: string | undefined | undefined;
38
+ key?: import("react").Key | null | undefined;
39
+ defaultChecked?: boolean | undefined | undefined;
40
+ defaultValue?: string | number | readonly string[] | undefined;
41
+ suppressContentEditableWarning?: boolean | undefined | undefined;
42
+ suppressHydrationWarning?: boolean | undefined | undefined;
43
+ accessKey?: string | undefined | undefined;
44
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
45
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
46
+ contextMenu?: string | undefined | undefined;
47
+ dir?: string | undefined | undefined;
48
+ draggable?: (boolean | "true" | "false") | undefined;
49
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
50
+ hidden?: boolean | undefined | undefined;
51
+ id?: string | undefined | undefined;
52
+ lang?: string | undefined | undefined;
53
+ nonce?: string | undefined | undefined;
54
+ spellCheck?: (boolean | "true" | "false") | undefined;
55
+ tabIndex?: number | undefined | undefined;
56
+ translate?: "yes" | "no" | undefined | undefined;
57
+ radioGroup?: string | undefined | undefined;
58
+ role?: import("react").AriaRole | undefined;
59
+ about?: string | undefined | undefined;
60
+ content?: string | undefined | undefined;
61
+ datatype?: string | undefined | undefined;
62
+ inlist?: any;
63
+ prefix?: string | undefined | undefined;
64
+ property?: string | undefined | undefined;
65
+ rel?: string | undefined | undefined;
66
+ resource?: string | undefined | undefined;
67
+ rev?: string | undefined | undefined;
68
+ typeof?: string | undefined | undefined;
69
+ vocab?: string | undefined | undefined;
70
+ autoCorrect?: string | undefined | undefined;
71
+ autoSave?: string | undefined | undefined;
72
+ itemProp?: string | undefined | undefined;
73
+ itemScope?: boolean | undefined | undefined;
74
+ itemType?: string | undefined | undefined;
75
+ itemID?: string | undefined | undefined;
76
+ itemRef?: string | undefined | undefined;
77
+ results?: number | undefined | undefined;
78
+ security?: string | undefined | undefined;
79
+ unselectable?: "on" | "off" | undefined | undefined;
80
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
81
+ is?: string | undefined | undefined;
82
+ "aria-activedescendant"?: string | undefined | undefined;
83
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
84
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
85
+ "aria-braillelabel"?: string | undefined | undefined;
86
+ "aria-brailleroledescription"?: string | undefined | undefined;
87
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
88
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
89
+ "aria-colcount"?: number | undefined | undefined;
90
+ "aria-colindex"?: number | undefined | undefined;
91
+ "aria-colindextext"?: string | undefined | undefined;
92
+ "aria-colspan"?: number | undefined | undefined;
93
+ "aria-controls"?: string | undefined | undefined;
94
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
95
+ "aria-describedby"?: string | undefined | undefined;
96
+ "aria-description"?: string | undefined | undefined;
97
+ "aria-details"?: string | undefined | undefined;
98
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
99
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
100
+ "aria-errormessage"?: string | undefined | undefined;
101
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
102
+ "aria-flowto"?: string | undefined | undefined;
103
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
104
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
105
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
106
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
107
+ "aria-keyshortcuts"?: string | undefined | undefined;
108
+ "aria-label"?: string | undefined | undefined;
109
+ "aria-labelledby"?: string | undefined | undefined;
110
+ "aria-level"?: number | undefined | undefined;
111
+ "aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
112
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
113
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
114
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
115
+ "aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
116
+ "aria-owns"?: string | undefined | undefined;
117
+ "aria-placeholder"?: string | undefined | undefined;
118
+ "aria-posinset"?: number | undefined | undefined;
119
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
120
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
121
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
122
+ "aria-required"?: (boolean | "true" | "false") | undefined;
123
+ "aria-roledescription"?: string | undefined | undefined;
124
+ "aria-rowcount"?: number | undefined | undefined;
125
+ "aria-rowindex"?: number | undefined | undefined;
126
+ "aria-rowindextext"?: string | undefined | undefined;
127
+ "aria-rowspan"?: number | undefined | undefined;
128
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
129
+ "aria-setsize"?: number | undefined | undefined;
130
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
131
+ "aria-valuemax"?: number | undefined | undefined;
132
+ "aria-valuemin"?: number | undefined | undefined;
133
+ "aria-valuenow"?: number | undefined | undefined;
134
+ "aria-valuetext"?: string | undefined | undefined;
135
+ dangerouslySetInnerHTML?: {
136
+ __html: string | TrustedHTML;
137
+ } | undefined | undefined;
138
+ onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
139
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
140
+ onCut?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
141
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
142
+ onPaste?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
143
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
144
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
145
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
146
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
147
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
148
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
149
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
150
+ onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
151
+ onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
152
+ onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
153
+ onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
154
+ onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
155
+ onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
156
+ onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
157
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
158
+ onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
159
+ onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
160
+ onReset?: import("react").FormEventHandler<HTMLDivElement> | undefined;
161
+ onResetCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
162
+ onSubmit?: import("react").FormEventHandler<HTMLDivElement> | undefined;
163
+ onSubmitCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
164
+ onInvalid?: import("react").FormEventHandler<HTMLDivElement> | undefined;
165
+ onInvalidCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
166
+ onLoad?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
167
+ onLoadCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
168
+ onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
169
+ onErrorCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
170
+ onKeyDown?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
171
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
172
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
173
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
174
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
175
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
176
+ onAbort?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
177
+ onAbortCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
178
+ onCanPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
179
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
180
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
181
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
182
+ onDurationChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
183
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
184
+ onEmptied?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
185
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
186
+ onEncrypted?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
187
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
188
+ onEnded?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
189
+ onEndedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
190
+ onLoadedData?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
191
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
192
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
193
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
194
+ onLoadStart?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
195
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
196
+ onPause?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
197
+ onPauseCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
198
+ onPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
199
+ onPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
200
+ onPlaying?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
201
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
202
+ onProgress?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
203
+ onProgressCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
204
+ onRateChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
205
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
206
+ onResize?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
207
+ onResizeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
208
+ onSeeked?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
209
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
210
+ onSeeking?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
211
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
212
+ onStalled?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
213
+ onStalledCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
214
+ onSuspend?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
215
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
216
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
217
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
218
+ onVolumeChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
219
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
220
+ onWaiting?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
221
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
222
+ onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
223
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
224
+ onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
225
+ onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
226
+ onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
227
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
228
+ onDoubleClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
229
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
230
+ onDrag?: import("react").DragEventHandler<HTMLDivElement> | undefined;
231
+ onDragCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
232
+ onDragEnd?: import("react").DragEventHandler<HTMLDivElement> | undefined;
233
+ onDragEndCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
234
+ onDragEnter?: import("react").DragEventHandler<HTMLDivElement> | undefined;
235
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
236
+ onDragExit?: import("react").DragEventHandler<HTMLDivElement> | undefined;
237
+ onDragExitCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
238
+ onDragLeave?: import("react").DragEventHandler<HTMLDivElement> | undefined;
239
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
240
+ onDragOver?: import("react").DragEventHandler<HTMLDivElement> | undefined;
241
+ onDragOverCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
242
+ onDragStart?: import("react").DragEventHandler<HTMLDivElement> | undefined;
243
+ onDragStartCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
244
+ onDrop?: import("react").DragEventHandler<HTMLDivElement> | undefined;
245
+ onDropCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
246
+ onMouseDown?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
247
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
248
+ onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
249
+ onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
250
+ onMouseMove?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
251
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
252
+ onMouseOut?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
253
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
254
+ onMouseOver?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
255
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
256
+ onMouseUp?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
257
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
258
+ onSelect?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
259
+ onSelectCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
260
+ onTouchCancel?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
261
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
262
+ onTouchEnd?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
263
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
264
+ onTouchMove?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
265
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
266
+ onTouchStart?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
267
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
268
+ onPointerDown?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
269
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
270
+ onPointerMove?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
271
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
272
+ onPointerUp?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
273
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
274
+ onPointerCancel?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
275
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
276
+ onPointerEnter?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
277
+ onPointerLeave?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
278
+ onPointerOver?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
279
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
280
+ onPointerOut?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
281
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
282
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
283
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
284
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
285
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
286
+ onScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
287
+ onScrollCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
288
+ onWheel?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
289
+ onWheelCapture?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
290
+ onAnimationStart?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
291
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
292
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
293
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
294
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
295
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
296
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
297
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
298
+ component?: React.ElementType | undefined;
299
+ border?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | "hidden" | "medium" | (string & {}) | "none" | "inherit" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "inset" | "thick" | "thin" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | "hidden" | "medium" | (string & {}) | "none" | "inherit" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "inset" | "thick" | "thin" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | undefined>);
300
+ height?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined>);
301
+ width?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined>);
302
+ position?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | undefined>);
303
+ boxShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | import("csstype").Property.BoxShadow | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | import("csstype").Property.BoxShadow | undefined>);
304
+ fontWeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>);
305
+ zIndex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>);
306
+ alignContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignContent | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignContent | undefined>);
307
+ alignItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems | undefined>);
308
+ alignSelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf | undefined>);
309
+ bottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined>);
310
+ boxSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined>);
311
+ columnGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined>);
312
+ display?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>);
313
+ flexBasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined>);
314
+ flexDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined>);
315
+ flexGrow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined>);
316
+ flexShrink?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined>);
317
+ flexWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | undefined>);
318
+ fontFamily?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFamily | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFamily | undefined>);
319
+ fontSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined>);
320
+ fontStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStyle | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStyle | undefined>);
321
+ gridAutoColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined>);
322
+ gridAutoFlow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridAutoFlow | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridAutoFlow | undefined>);
323
+ gridAutoRows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined>);
324
+ gridTemplateAreas?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridTemplateAreas | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridTemplateAreas | undefined>);
325
+ gridTemplateColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined>);
326
+ gridTemplateRows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined>);
327
+ justifyContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent | undefined>);
328
+ justifyItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyItems | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyItems | undefined>);
329
+ justifySelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifySelf | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifySelf | undefined>);
330
+ left?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined>);
331
+ letterSpacing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined>);
332
+ lineHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined>);
333
+ marginBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined>);
334
+ marginBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined>);
335
+ marginBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined>);
336
+ marginInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined>);
337
+ marginInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined>);
338
+ marginLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>);
339
+ marginRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined>);
340
+ marginTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>);
341
+ maxHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined>);
342
+ maxWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined>);
343
+ minHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined>);
344
+ minWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined>);
345
+ order?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined>);
346
+ paddingBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined>);
347
+ paddingBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined>);
348
+ paddingBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined>);
349
+ paddingInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined>);
350
+ paddingInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined>);
351
+ paddingLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>);
352
+ paddingRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined>);
353
+ paddingTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>);
354
+ right?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined>);
355
+ rowGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined>);
356
+ textAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | undefined>);
357
+ textOverflow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined>);
358
+ textTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | undefined>);
359
+ top?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined>);
360
+ visibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | undefined>);
361
+ whiteSpace?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpace | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpace | undefined>);
362
+ borderBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined>);
363
+ borderColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderColor | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderColor | undefined>);
364
+ borderLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined>);
365
+ borderRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined>);
366
+ borderRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined>);
367
+ borderTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined>);
368
+ flex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined>);
369
+ gap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined>);
370
+ gridArea?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined>);
371
+ gridColumn?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined>);
372
+ gridRow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined>);
373
+ marginBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined>);
374
+ marginInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined>);
375
+ overflow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Overflow | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Overflow | undefined>);
376
+ padding?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined>);
377
+ paddingBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined>);
378
+ paddingInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined>);
379
+ bgcolor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundColor | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundColor | undefined>);
380
+ m?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined>);
381
+ mt?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>);
382
+ mr?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined>);
383
+ mb?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined>);
384
+ ml?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>);
385
+ mx?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>);
386
+ marginX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>);
387
+ my?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>);
388
+ marginY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>);
389
+ pt?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>);
390
+ pr?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined>);
391
+ pb?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined>);
392
+ pl?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>);
393
+ px?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>);
394
+ paddingX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>);
395
+ py?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>);
396
+ paddingY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>);
397
+ typography?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined>);
398
+ displayPrint?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>);
399
+ };
400
+ //# sourceMappingURL=useXnsNameCaptureRouting.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useXnsNameCaptureRouting.d.ts","sourceRoot":"","sources":["../../../../../../src/components/XnsNameCapture/hooks/routing/useXnsNameCaptureRouting.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAA;AAGzD,eAAO,MAAM,wBAAwB,GAAI,OAAO,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAeoyB,MAAO,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAH3yB,MAAO,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEjG,CAAA"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Assumes the user was redirected with a link that contains a username query parameter.
3
+ * @returns The xNS name from the URI username query parameter.
4
+ */
5
+ export declare const useXnsNameFromLocation: () => [name: string | undefined, error: Error | undefined];
6
+ //# sourceMappingURL=useXnsNameFromLocation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useXnsNameFromLocation.d.ts","sourceRoot":"","sources":["../../../../../../src/components/XnsNameCapture/hooks/routing/useXnsNameFromLocation.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,eAAO,MAAM,sBAAsB,QAAO,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,EAAE,KAAK,EAAE,KAAK,GAAG,SAAS,CAmB5F,CAAA"}
@@ -0,0 +1,7 @@
1
+ export * from './Errors.tsx';
2
+ export * from './hooks/index.ts';
3
+ export * from './Props.ts';
4
+ export * from './SecondaryLink.tsx';
5
+ export * from './XnsNameCapture.tsx';
6
+ export * from './XnsNameCaptureWithContext.tsx';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/XnsNameCapture/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,YAAY,CAAA;AAC1B,cAAc,qBAAqB,CAAA;AACnC,cAAc,sBAAsB,CAAA;AACpC,cAAc,iCAAiC,CAAA"}
@@ -0,0 +1,2 @@
1
+ export * from './navigateWithUsername.ts';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/XnsNameCapture/lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { To } from 'react-router-dom';
2
+ export declare const navigateWithUsername: (xnsName: string, paramsString: string, navigate?: ((to: string) => void), to?: To) => void;
3
+ //# sourceMappingURL=navigateWithUsername.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"navigateWithUsername.d.ts","sourceRoot":"","sources":["../../../../../src/components/XnsNameCapture/lib/navigateWithUsername.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,kBAAkB,CAAA;AAE1C,eAAO,MAAM,oBAAoB,GAAI,SAAS,MAAM,EAAE,cAAc,MAAM,EAAE,WAAW,CAAC,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC,EAAE,KAAK,EAAE,SAkBrH,CAAA"}
@@ -0,0 +1,3 @@
1
+ export * from './EstimateName/index.ts';
2
+ export * from './XnsNameCapture/index.ts';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,2BAA2B,CAAA"}