import { KeyboardEvent, ReactNode, Ref, SyntheticEvent } from "react"; import { OverlayProps } from "../../overlay"; export interface UseSelectProps { id?: string; open?: boolean | null; defaultOpen?: boolean; selectedKey?: string | null; defaultSelectedKey?: string; validationState?: "valid" | "invalid"; onOpenChange?: (event: SyntheticEvent, isOpen: boolean) => void; onSelectionChange?: (event: SyntheticEvent, selectedKey: string) => void; direction: "bottom" | "top"; align?: "start" | "end"; autoFocus?: boolean | number; disabled?: boolean; readOnly?: boolean; allowFlip?: boolean; allowPreventOverflow?: boolean; allowResponsiveMenuWidth?: boolean; ariaLabel?: string; ariaLabelledBy?: string; ariaDescribedBy?: string; overlayProps?: Partial; ref: Ref; } export declare function useSelect(children: ReactNode, { id, open: openProp, defaultOpen, selectedKey: selectedKeyProp, defaultSelectedKey, validationState, onSelectionChange, onOpenChange, direction, align, autoFocus, disabled, readOnly, allowFlip, allowPreventOverflow, allowResponsiveMenuWidth, ariaLabel, ariaLabelledBy, ariaDescribedBy, overlayProps: { id: menuId, style: { width: menuWidth, ...menuStyle }, ...menuProps }, ref }: UseSelectProps): { selectedKey: string; setSelectedKey: (event: SyntheticEvent, newKeys: string[]) => void; selectedItem: { text: any; icon: any; endIcon: any; avatar: any; }; isOpen: boolean; open: (event: SyntheticEvent, focusTarget: string) => void; close: (event: SyntheticEvent) => void; focusScope: import("../../shared").DomScope; triggerProps: { onClick: undefined; onKeyDown: undefined; onKeyUp: undefined; onMouseEnter: undefined; onFocus: undefined; onBlur: undefined; tabIndex: number; "aria-haspopup": "dialog" | "menu" | "listbox"; "aria-expanded": boolean; "aria-controls": string; } & { id: string; onKeyDown: (event: KeyboardEvent) => void; disabled: boolean; "aria-label": string; "aria-labelledby": string; "aria-describedby": string; ref: import("../../shared").MergedRef; }; overlayProps: { onKeyDown: (event: KeyboardEvent) => void; } & { onKeyDown?: undefined; } & { onKeyDown: (event: KeyboardEvent) => void; } & { id: string; show: boolean; ref: import("../../shared").MergedRef; } & { className?: string; ref?: import("react").LegacyRef & Ref; cite?: string; data?: string; form?: string; label?: string; span?: number; summary?: string; title?: string; pattern?: string; size?: number; dir?: string; accept?: string; acceptCharset?: string; action?: string; allowFullScreen?: boolean; allowTransparency?: boolean; alt?: string; async?: boolean; autoComplete?: string; autoFocus?: boolean; autoPlay?: boolean; capture?: string | boolean; cellPadding?: string | number; cellSpacing?: string | number; charSet?: string; challenge?: string; checked?: boolean; classID?: string; cols?: number; colSpan?: number; content?: string; controls?: boolean; coords?: string; crossOrigin?: string; dateTime?: string; default?: boolean; defer?: boolean; disabled?: boolean; download?: any; encType?: string; formAction?: string; formEncType?: string; formMethod?: string; formNoValidate?: boolean; formTarget?: string; frameBorder?: string | number; headers?: string; height?: string | number; high?: number; href?: string; hrefLang?: string; htmlFor?: string; httpEquiv?: string; integrity?: string; keyParams?: string; keyType?: string; kind?: string; list?: string; loop?: boolean; low?: number; manifest?: string; marginHeight?: number; marginWidth?: number; max?: string | number; maxLength?: number; media?: string; mediaGroup?: string; method?: string; min?: string | number; minLength?: number; multiple?: boolean; muted?: boolean; name?: string; nonce?: string; noValidate?: boolean; open?: boolean; optimum?: number; placeholder?: string; playsInline?: boolean; poster?: string; preload?: string; readOnly?: boolean; rel?: string; required?: boolean; reversed?: boolean; rows?: number; rowSpan?: number; sandbox?: string; scope?: string; scoped?: boolean; scrolling?: string; seamless?: boolean; selected?: boolean; shape?: string; sizes?: string; src?: string; srcDoc?: string; srcLang?: string; srcSet?: string; start?: number; step?: string | number; target?: string; type?: string; useMap?: string; value?: string | number | readonly string[]; width?: string | number; wmode?: string; wrap?: string; defaultChecked?: boolean; defaultValue?: string | number | readonly string[]; suppressContentEditableWarning?: boolean; suppressHydrationWarning?: boolean; accessKey?: string; contentEditable?: "inherit" | (boolean | "true" | "false"); contextMenu?: string; draggable?: boolean | "true" | "false"; hidden?: boolean; lang?: string; spellCheck?: boolean | "true" | "false"; tabIndex?: number; translate?: "no" | "yes"; radioGroup?: string; role?: import("react").AriaRole; about?: string; datatype?: string; inlist?: any; prefix?: string; property?: string; resource?: string; typeof?: string; vocab?: string; autoCapitalize?: string; autoCorrect?: string; autoSave?: string; color?: string; itemProp?: string; itemScope?: boolean; itemType?: string; itemID?: string; itemRef?: string; results?: number; security?: string; unselectable?: "on" | "off"; inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal"; is?: string; 'aria-activedescendant'?: string; 'aria-atomic'?: boolean | "true" | "false"; 'aria-autocomplete'?: "list" | "none" | "inline" | "both"; 'aria-busy'?: boolean | "true" | "false"; 'aria-checked'?: boolean | "true" | "false" | "mixed"; 'aria-colcount'?: number; 'aria-colindex'?: number; 'aria-colspan'?: number; 'aria-controls'?: string; 'aria-current'?: boolean | "time" | "step" | "true" | "false" | "page" | "location" | "date"; 'aria-describedby'?: string; 'aria-details'?: string; 'aria-disabled'?: boolean | "true" | "false"; 'aria-dropeffect'?: "link" | "copy" | "none" | "move" | "execute" | "popup"; 'aria-errormessage'?: string; 'aria-expanded'?: boolean | "true" | "false"; 'aria-flowto'?: string; 'aria-grabbed'?: boolean | "true" | "false"; 'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false"; 'aria-hidden'?: boolean | "true" | "false"; 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling"; 'aria-keyshortcuts'?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-level'?: number; 'aria-live'?: "off" | "assertive" | "polite"; 'aria-modal'?: boolean | "true" | "false"; 'aria-multiline'?: boolean | "true" | "false"; 'aria-multiselectable'?: boolean | "true" | "false"; 'aria-orientation'?: "horizontal" | "vertical"; 'aria-owns'?: string; 'aria-placeholder'?: string; 'aria-posinset'?: number; 'aria-pressed'?: boolean | "true" | "false" | "mixed"; 'aria-readonly'?: boolean | "true" | "false"; 'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"; 'aria-required'?: boolean | "true" | "false"; 'aria-roledescription'?: string; 'aria-rowcount'?: number; 'aria-rowindex'?: number; 'aria-rowspan'?: number; 'aria-selected'?: boolean | "true" | "false"; 'aria-setsize'?: number; 'aria-sort'?: "none" | "ascending" | "descending" | "other"; 'aria-valuemax'?: number; 'aria-valuemin'?: number; 'aria-valuenow'?: number; 'aria-valuetext'?: string; dangerouslySetInnerHTML?: { __html: string; }; onCopy?: import("react").ClipboardEventHandler; onCopyCapture?: import("react").ClipboardEventHandler; onCut?: import("react").ClipboardEventHandler; onCutCapture?: import("react").ClipboardEventHandler; onPaste?: import("react").ClipboardEventHandler; onPasteCapture?: import("react").ClipboardEventHandler; onCompositionEnd?: import("react").CompositionEventHandler; onCompositionEndCapture?: import("react").CompositionEventHandler; onCompositionStart?: import("react").CompositionEventHandler; onCompositionStartCapture?: import("react").CompositionEventHandler; onCompositionUpdate?: import("react").CompositionEventHandler; onCompositionUpdateCapture?: import("react").CompositionEventHandler; onFocus?: import("react").FocusEventHandler; onFocusCapture?: import("react").FocusEventHandler; onBlur?: import("react").FocusEventHandler; onBlurCapture?: import("react").FocusEventHandler; onChange?: import("react").FormEventHandler; onChangeCapture?: import("react").FormEventHandler; onBeforeInput?: import("react").FormEventHandler; onBeforeInputCapture?: import("react").FormEventHandler; onInput?: import("react").FormEventHandler; onInputCapture?: import("react").FormEventHandler; onReset?: import("react").FormEventHandler; onResetCapture?: import("react").FormEventHandler; onSubmit?: import("react").FormEventHandler; onSubmitCapture?: import("react").FormEventHandler; onInvalid?: import("react").FormEventHandler; onInvalidCapture?: import("react").FormEventHandler; onLoad?: import("react").ReactEventHandler; onLoadCapture?: import("react").ReactEventHandler; onError?: import("react").ReactEventHandler; onErrorCapture?: import("react").ReactEventHandler; onKeyDown?: import("react").KeyboardEventHandler; onKeyDownCapture?: import("react").KeyboardEventHandler; onKeyPress?: import("react").KeyboardEventHandler; onKeyPressCapture?: import("react").KeyboardEventHandler; onKeyUp?: import("react").KeyboardEventHandler; onKeyUpCapture?: import("react").KeyboardEventHandler; onAbort?: import("react").ReactEventHandler; onAbortCapture?: import("react").ReactEventHandler; onCanPlay?: import("react").ReactEventHandler; onCanPlayCapture?: import("react").ReactEventHandler; onCanPlayThrough?: import("react").ReactEventHandler; onCanPlayThroughCapture?: import("react").ReactEventHandler; onDurationChange?: import("react").ReactEventHandler; onDurationChangeCapture?: import("react").ReactEventHandler; onEmptied?: import("react").ReactEventHandler; onEmptiedCapture?: import("react").ReactEventHandler; onEncrypted?: import("react").ReactEventHandler; onEncryptedCapture?: import("react").ReactEventHandler; onEnded?: import("react").ReactEventHandler; onEndedCapture?: import("react").ReactEventHandler; onLoadedData?: import("react").ReactEventHandler; onLoadedDataCapture?: import("react").ReactEventHandler; onLoadedMetadata?: import("react").ReactEventHandler; onLoadedMetadataCapture?: import("react").ReactEventHandler; onLoadStart?: import("react").ReactEventHandler; onLoadStartCapture?: import("react").ReactEventHandler; onPause?: import("react").ReactEventHandler; onPauseCapture?: import("react").ReactEventHandler; onPlay?: import("react").ReactEventHandler; onPlayCapture?: import("react").ReactEventHandler; onPlaying?: import("react").ReactEventHandler; onPlayingCapture?: import("react").ReactEventHandler; onProgress?: import("react").ReactEventHandler; onProgressCapture?: import("react").ReactEventHandler; onRateChange?: import("react").ReactEventHandler; onRateChangeCapture?: import("react").ReactEventHandler; onSeeked?: import("react").ReactEventHandler; onSeekedCapture?: import("react").ReactEventHandler; onSeeking?: import("react").ReactEventHandler; onSeekingCapture?: import("react").ReactEventHandler; onStalled?: import("react").ReactEventHandler; onStalledCapture?: import("react").ReactEventHandler; onSuspend?: import("react").ReactEventHandler; onSuspendCapture?: import("react").ReactEventHandler; onTimeUpdate?: import("react").ReactEventHandler; onTimeUpdateCapture?: import("react").ReactEventHandler; onVolumeChange?: import("react").ReactEventHandler; onVolumeChangeCapture?: import("react").ReactEventHandler; onWaiting?: import("react").ReactEventHandler; onWaitingCapture?: import("react").ReactEventHandler; onAuxClick?: import("react").MouseEventHandler; onAuxClickCapture?: import("react").MouseEventHandler; onClick?: import("react").MouseEventHandler; onClickCapture?: import("react").MouseEventHandler; onContextMenu?: import("react").MouseEventHandler; onContextMenuCapture?: import("react").MouseEventHandler; onDoubleClick?: import("react").MouseEventHandler; onDoubleClickCapture?: import("react").MouseEventHandler; onDrag?: import("react").DragEventHandler; onDragCapture?: import("react").DragEventHandler; onDragEnd?: import("react").DragEventHandler; onDragEndCapture?: import("react").DragEventHandler; onDragEnter?: import("react").DragEventHandler; onDragEnterCapture?: import("react").DragEventHandler; onDragExit?: import("react").DragEventHandler; onDragExitCapture?: import("react").DragEventHandler; onDragLeave?: import("react").DragEventHandler; onDragLeaveCapture?: import("react").DragEventHandler; onDragOver?: import("react").DragEventHandler; onDragOverCapture?: import("react").DragEventHandler; onDragStart?: import("react").DragEventHandler; onDragStartCapture?: import("react").DragEventHandler; onDrop?: import("react").DragEventHandler; onDropCapture?: import("react").DragEventHandler; onMouseDown?: import("react").MouseEventHandler; onMouseDownCapture?: import("react").MouseEventHandler; onMouseEnter?: import("react").MouseEventHandler; onMouseLeave?: import("react").MouseEventHandler; onMouseMove?: import("react").MouseEventHandler; onMouseMoveCapture?: import("react").MouseEventHandler; onMouseOut?: import("react").MouseEventHandler; onMouseOutCapture?: import("react").MouseEventHandler; onMouseOver?: import("react").MouseEventHandler; onMouseOverCapture?: import("react").MouseEventHandler; onMouseUp?: import("react").MouseEventHandler; onMouseUpCapture?: import("react").MouseEventHandler; onSelect?: import("react").ReactEventHandler; onSelectCapture?: import("react").ReactEventHandler; onTouchCancel?: import("react").TouchEventHandler; onTouchCancelCapture?: import("react").TouchEventHandler; onTouchEnd?: import("react").TouchEventHandler; onTouchEndCapture?: import("react").TouchEventHandler; onTouchMove?: import("react").TouchEventHandler; onTouchMoveCapture?: import("react").TouchEventHandler; onTouchStart?: import("react").TouchEventHandler; onTouchStartCapture?: import("react").TouchEventHandler; onPointerDown?: import("react").PointerEventHandler; onPointerDownCapture?: import("react").PointerEventHandler; onPointerMove?: import("react").PointerEventHandler; onPointerMoveCapture?: import("react").PointerEventHandler; onPointerUp?: import("react").PointerEventHandler; onPointerUpCapture?: import("react").PointerEventHandler; onPointerCancel?: import("react").PointerEventHandler; onPointerCancelCapture?: import("react").PointerEventHandler; onPointerEnter?: import("react").PointerEventHandler; onPointerEnterCapture?: import("react").PointerEventHandler; onPointerLeave?: import("react").PointerEventHandler; onPointerLeaveCapture?: import("react").PointerEventHandler; onPointerOver?: import("react").PointerEventHandler; onPointerOverCapture?: import("react").PointerEventHandler; onPointerOut?: import("react").PointerEventHandler; onPointerOutCapture?: import("react").PointerEventHandler; onGotPointerCapture?: import("react").PointerEventHandler; onGotPointerCaptureCapture?: import("react").PointerEventHandler; onLostPointerCapture?: import("react").PointerEventHandler; onLostPointerCaptureCapture?: import("react").PointerEventHandler; onScroll?: import("react").UIEventHandler; onScrollCapture?: import("react").UIEventHandler; onWheel?: import("react").WheelEventHandler; onWheelCapture?: import("react").WheelEventHandler; onAnimationStart?: import("react").AnimationEventHandler; onAnimationStartCapture?: import("react").AnimationEventHandler; onAnimationEnd?: import("react").AnimationEventHandler; onAnimationEndCapture?: import("react").AnimationEventHandler; onAnimationIteration?: import("react").AnimationEventHandler; onAnimationIterationCapture?: import("react").AnimationEventHandler; onTransitionEnd?: import("react").TransitionEventHandler; onTransitionEndCapture?: import("react").TransitionEventHandler; key?: import("react").Key; children?: ReactNode; as?: import("react").ElementType; zIndex?: number; show?: boolean; borderOffset?: string | number; containerElement?: HTMLElement; slot?: string; "data-testid"?: string; } & { className: string; style: { width: import("csstype").Property.Width; alignContent?: import("csstype").Property.AlignContent; alignItems?: import("csstype").Property.AlignItems; alignSelf?: import("csstype").Property.AlignSelf; alignTracks?: import("csstype").Property.AlignTracks; animationDelay?: import("csstype").Property.AnimationDelay; animationDirection?: import("csstype").Property.AnimationDirection; animationDuration?: import("csstype").Property.AnimationDuration; animationFillMode?: import("csstype").Property.AnimationFillMode; animationIterationCount?: import("csstype").Property.AnimationIterationCount; animationName?: import("csstype").Property.AnimationName; animationPlayState?: import("csstype").Property.AnimationPlayState; animationTimingFunction?: import("csstype").Property.AnimationTimingFunction; appearance?: import("csstype").Property.Appearance; aspectRatio?: import("csstype").Property.AspectRatio; backdropFilter?: import("csstype").Property.BackdropFilter; backfaceVisibility?: import("csstype").Property.BackfaceVisibility; backgroundAttachment?: import("csstype").Property.BackgroundAttachment; backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode; backgroundClip?: import("csstype").Property.BackgroundClip; backgroundColor?: import("csstype").Property.BackgroundColor; backgroundImage?: import("csstype").Property.BackgroundImage; backgroundOrigin?: import("csstype").Property.BackgroundOrigin; backgroundPositionX?: import("csstype").Property.BackgroundPositionX; backgroundPositionY?: import("csstype").Property.BackgroundPositionY; backgroundRepeat?: import("csstype").Property.BackgroundRepeat; backgroundSize?: import("csstype").Property.BackgroundSize; blockOverflow?: import("csstype").Property.BlockOverflow; blockSize?: import("csstype").Property.BlockSize; borderBlockColor?: import("csstype").Property.BorderBlockColor; borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor; borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle; borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth; borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor; borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle; borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth; borderBlockStyle?: import("csstype").Property.BorderBlockStyle; borderBlockWidth?: import("csstype").Property.BorderBlockWidth; borderBottomColor?: import("csstype").Property.BorderBottomColor; borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius; borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius; borderBottomStyle?: import("csstype").Property.BorderBottomStyle; borderBottomWidth?: import("csstype").Property.BorderBottomWidth; borderCollapse?: import("csstype").Property.BorderCollapse; borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius; borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius; borderImageOutset?: import("csstype").Property.BorderImageOutset; borderImageRepeat?: import("csstype").Property.BorderImageRepeat; borderImageSlice?: import("csstype").Property.BorderImageSlice; borderImageSource?: import("csstype").Property.BorderImageSource; borderImageWidth?: import("csstype").Property.BorderImageWidth; borderInlineColor?: import("csstype").Property.BorderInlineColor; borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor; borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle; borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth; borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor; borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle; borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth; borderInlineStyle?: import("csstype").Property.BorderInlineStyle; borderInlineWidth?: import("csstype").Property.BorderInlineWidth; borderLeftColor?: import("csstype").Property.BorderLeftColor; borderLeftStyle?: import("csstype").Property.BorderLeftStyle; borderLeftWidth?: import("csstype").Property.BorderLeftWidth; borderRightColor?: import("csstype").Property.BorderRightColor; borderRightStyle?: import("csstype").Property.BorderRightStyle; borderRightWidth?: import("csstype").Property.BorderRightWidth; borderSpacing?: import("csstype").Property.BorderSpacing; borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius; borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius; borderTopColor?: import("csstype").Property.BorderTopColor; borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius; borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius; borderTopStyle?: import("csstype").Property.BorderTopStyle; borderTopWidth?: import("csstype").Property.BorderTopWidth; bottom?: import("csstype").Property.Bottom; boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak; boxShadow?: import("csstype").Property.BoxShadow; boxSizing?: import("csstype").Property.BoxSizing; breakAfter?: import("csstype").Property.BreakAfter; breakBefore?: import("csstype").Property.BreakBefore; breakInside?: import("csstype").Property.BreakInside; captionSide?: import("csstype").Property.CaptionSide; caretColor?: import("csstype").Property.CaretColor; clear?: import("csstype").Property.Clear; clipPath?: import("csstype").Property.ClipPath; color?: import("csstype").Property.Color; colorAdjust?: import("csstype").Property.ColorAdjust; colorScheme?: import("csstype").Property.ColorScheme; columnCount?: import("csstype").Property.ColumnCount; columnFill?: import("csstype").Property.ColumnFill; columnGap?: import("csstype").Property.ColumnGap; columnRuleColor?: import("csstype").Property.ColumnRuleColor; columnRuleStyle?: import("csstype").Property.ColumnRuleStyle; columnRuleWidth?: import("csstype").Property.ColumnRuleWidth; columnSpan?: import("csstype").Property.ColumnSpan; columnWidth?: import("csstype").Property.ColumnWidth; contain?: import("csstype").Property.Contain; content?: import("csstype").Property.Content; contentVisibility?: import("csstype").Property.ContentVisibility; counterIncrement?: import("csstype").Property.CounterIncrement; counterReset?: import("csstype").Property.CounterReset; counterSet?: import("csstype").Property.CounterSet; cursor?: import("csstype").Property.Cursor; direction?: import("csstype").Property.Direction; display?: import("csstype").Property.Display; emptyCells?: import("csstype").Property.EmptyCells; filter?: import("csstype").Property.Filter; flexBasis?: import("csstype").Property.FlexBasis; flexDirection?: import("csstype").Property.FlexDirection; flexGrow?: import("csstype").Property.FlexGrow; flexShrink?: import("csstype").Property.FlexShrink; flexWrap?: import("csstype").Property.FlexWrap; float?: import("csstype").Property.Float; fontFamily?: import("csstype").Property.FontFamily; fontFeatureSettings?: import("csstype").Property.FontFeatureSettings; fontKerning?: import("csstype").Property.FontKerning; fontLanguageOverride?: import("csstype").Property.FontLanguageOverride; fontOpticalSizing?: import("csstype").Property.FontOpticalSizing; fontSize?: import("csstype").Property.FontSize; fontSizeAdjust?: import("csstype").Property.FontSizeAdjust; fontSmooth?: import("csstype").Property.FontSmooth; fontStretch?: import("csstype").Property.FontStretch; fontStyle?: import("csstype").Property.FontStyle; fontSynthesis?: import("csstype").Property.FontSynthesis; fontVariant?: import("csstype").Property.FontVariant; fontVariantCaps?: import("csstype").Property.FontVariantCaps; fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian; fontVariantLigatures?: import("csstype").Property.FontVariantLigatures; fontVariantNumeric?: import("csstype").Property.FontVariantNumeric; fontVariantPosition?: import("csstype").Property.FontVariantPosition; fontVariationSettings?: import("csstype").Property.FontVariationSettings; fontWeight?: import("csstype").Property.FontWeight; forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust; gridAutoColumns?: import("csstype").Property.GridAutoColumns; gridAutoFlow?: import("csstype").Property.GridAutoFlow; gridAutoRows?: import("csstype").Property.GridAutoRows; gridColumnEnd?: import("csstype").Property.GridColumnEnd; gridColumnStart?: import("csstype").Property.GridColumnStart; gridRowEnd?: import("csstype").Property.GridRowEnd; gridRowStart?: import("csstype").Property.GridRowStart; gridTemplateAreas?: import("csstype").Property.GridTemplateAreas; gridTemplateColumns?: import("csstype").Property.GridTemplateColumns; gridTemplateRows?: import("csstype").Property.GridTemplateRows; hangingPunctuation?: import("csstype").Property.HangingPunctuation; height?: import("csstype").Property.Height; hyphens?: import("csstype").Property.Hyphens; imageOrientation?: import("csstype").Property.ImageOrientation; imageRendering?: import("csstype").Property.ImageRendering; imageResolution?: import("csstype").Property.ImageResolution; initialLetter?: import("csstype").Property.InitialLetter; inlineSize?: import("csstype").Property.InlineSize; inset?: import("csstype").Property.Inset; insetBlock?: import("csstype").Property.InsetBlock; insetBlockEnd?: import("csstype").Property.InsetBlockEnd; insetBlockStart?: import("csstype").Property.InsetBlockStart; insetInline?: import("csstype").Property.InsetInline; insetInlineEnd?: import("csstype").Property.InsetInlineEnd; insetInlineStart?: import("csstype").Property.InsetInlineStart; isolation?: import("csstype").Property.Isolation; justifyContent?: import("csstype").Property.JustifyContent; justifyItems?: import("csstype").Property.JustifyItems; justifySelf?: import("csstype").Property.JustifySelf; justifyTracks?: import("csstype").Property.JustifyTracks; left?: import("csstype").Property.Left; letterSpacing?: import("csstype").Property.LetterSpacing; lineBreak?: import("csstype").Property.LineBreak; lineHeight?: import("csstype").Property.LineHeight; lineHeightStep?: import("csstype").Property.LineHeightStep; listStyleImage?: import("csstype").Property.ListStyleImage; listStylePosition?: import("csstype").Property.ListStylePosition; listStyleType?: import("csstype").Property.ListStyleType; marginBlock?: import("csstype").Property.MarginBlock; marginBlockEnd?: import("csstype").Property.MarginBlockEnd; marginBlockStart?: import("csstype").Property.MarginBlockStart; marginBottom?: import("csstype").Property.MarginBottom; marginInline?: import("csstype").Property.MarginInline; marginInlineEnd?: import("csstype").Property.MarginInlineEnd; marginInlineStart?: import("csstype").Property.MarginInlineStart; marginLeft?: import("csstype").Property.MarginLeft; marginRight?: import("csstype").Property.MarginRight; marginTop?: import("csstype").Property.MarginTop; maskBorderMode?: import("csstype").Property.MaskBorderMode; maskBorderOutset?: import("csstype").Property.MaskBorderOutset; maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat; maskBorderSlice?: import("csstype").Property.MaskBorderSlice; maskBorderSource?: import("csstype").Property.MaskBorderSource; maskBorderWidth?: import("csstype").Property.MaskBorderWidth; maskClip?: import("csstype").Property.MaskClip; maskComposite?: import("csstype").Property.MaskComposite; maskImage?: import("csstype").Property.MaskImage; maskMode?: import("csstype").Property.MaskMode; maskOrigin?: import("csstype").Property.MaskOrigin; maskPosition?: import("csstype").Property.MaskPosition; maskRepeat?: import("csstype").Property.MaskRepeat; maskSize?: import("csstype").Property.MaskSize; maskType?: import("csstype").Property.MaskType; mathStyle?: import("csstype").Property.MathStyle; maxBlockSize?: import("csstype").Property.MaxBlockSize; maxHeight?: import("csstype").Property.MaxHeight; maxInlineSize?: import("csstype").Property.MaxInlineSize; maxLines?: import("csstype").Property.MaxLines; maxWidth?: import("csstype").Property.MaxWidth; minBlockSize?: import("csstype").Property.MinBlockSize; minHeight?: import("csstype").Property.MinHeight; minInlineSize?: import("csstype").Property.MinInlineSize; minWidth?: import("csstype").Property.MinWidth; mixBlendMode?: import("csstype").Property.MixBlendMode; motionDistance?: import("csstype").Property.OffsetDistance; motionPath?: import("csstype").Property.OffsetPath; motionRotation?: import("csstype").Property.OffsetRotate; objectFit?: import("csstype").Property.ObjectFit; objectPosition?: import("csstype").Property.ObjectPosition; offsetAnchor?: import("csstype").Property.OffsetAnchor; offsetDistance?: import("csstype").Property.OffsetDistance; offsetPath?: import("csstype").Property.OffsetPath; offsetRotate?: import("csstype").Property.OffsetRotate; offsetRotation?: import("csstype").Property.OffsetRotate; opacity?: import("csstype").Property.Opacity; order?: import("csstype").Property.Order; orphans?: import("csstype").Property.Orphans; outlineColor?: import("csstype").Property.OutlineColor; outlineOffset?: import("csstype").Property.OutlineOffset; outlineStyle?: import("csstype").Property.OutlineStyle; outlineWidth?: import("csstype").Property.OutlineWidth; overflowAnchor?: import("csstype").Property.OverflowAnchor; overflowBlock?: import("csstype").Property.OverflowBlock; overflowClipBox?: import("csstype").Property.OverflowClipBox; overflowClipMargin?: import("csstype").Property.OverflowClipMargin; overflowInline?: import("csstype").Property.OverflowInline; overflowWrap?: import("csstype").Property.OverflowWrap; overflowX?: import("csstype").Property.OverflowX; overflowY?: import("csstype").Property.OverflowY; overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock; overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline; overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX; overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY; paddingBlock?: import("csstype").Property.PaddingBlock; paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd; paddingBlockStart?: import("csstype").Property.PaddingBlockStart; paddingBottom?: import("csstype").Property.PaddingBottom; paddingInline?: import("csstype").Property.PaddingInline; paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd; paddingInlineStart?: import("csstype").Property.PaddingInlineStart; paddingLeft?: import("csstype").Property.PaddingLeft; paddingRight?: import("csstype").Property.PaddingRight; paddingTop?: import("csstype").Property.PaddingTop; pageBreakAfter?: import("csstype").Property.PageBreakAfter; pageBreakBefore?: import("csstype").Property.PageBreakBefore; pageBreakInside?: import("csstype").Property.PageBreakInside; paintOrder?: import("csstype").Property.PaintOrder; perspective?: import("csstype").Property.Perspective; perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin; placeContent?: import("csstype").Property.PlaceContent; pointerEvents?: import("csstype").Property.PointerEvents; position?: import("csstype").Property.Position; quotes?: import("csstype").Property.Quotes; resize?: import("csstype").Property.Resize; right?: import("csstype").Property.Right; rotate?: import("csstype").Property.Rotate; rowGap?: import("csstype").Property.RowGap; rubyAlign?: import("csstype").Property.RubyAlign; rubyMerge?: import("csstype").Property.RubyMerge; rubyPosition?: import("csstype").Property.RubyPosition; scale?: import("csstype").Property.Scale; scrollBehavior?: import("csstype").Property.ScrollBehavior; scrollMargin?: import("csstype").Property.ScrollMargin; scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock; scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd; scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart; scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom; scrollMarginInline?: import("csstype").Property.ScrollMarginInline; scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd; scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart; scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft; scrollMarginRight?: import("csstype").Property.ScrollMarginRight; scrollMarginTop?: import("csstype").Property.ScrollMarginTop; scrollPadding?: import("csstype").Property.ScrollPadding; scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock; scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd; scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart; scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom; scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline; scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd; scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart; scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft; scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight; scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop; scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign; scrollSnapMargin?: import("csstype").Property.ScrollMargin; scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom; scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft; scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight; scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop; scrollSnapStop?: import("csstype").Property.ScrollSnapStop; scrollSnapType?: import("csstype").Property.ScrollSnapType; scrollbarColor?: import("csstype").Property.ScrollbarColor; scrollbarGutter?: import("csstype").Property.ScrollbarGutter; scrollbarWidth?: import("csstype").Property.ScrollbarWidth; shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold; shapeMargin?: import("csstype").Property.ShapeMargin; shapeOutside?: import("csstype").Property.ShapeOutside; tabSize?: import("csstype").Property.TabSize; tableLayout?: import("csstype").Property.TableLayout; textAlign?: import("csstype").Property.TextAlign; textAlignLast?: import("csstype").Property.TextAlignLast; textCombineUpright?: import("csstype").Property.TextCombineUpright; textDecorationColor?: import("csstype").Property.TextDecorationColor; textDecorationLine?: import("csstype").Property.TextDecorationLine; textDecorationSkip?: import("csstype").Property.TextDecorationSkip; textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk; textDecorationStyle?: import("csstype").Property.TextDecorationStyle; textDecorationThickness?: import("csstype").Property.TextDecorationThickness; textDecorationWidth?: import("csstype").Property.TextDecorationThickness; textEmphasisColor?: import("csstype").Property.TextEmphasisColor; textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition; textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle; textIndent?: import("csstype").Property.TextIndent; textJustify?: import("csstype").Property.TextJustify; textOrientation?: import("csstype").Property.TextOrientation; textOverflow?: import("csstype").Property.TextOverflow; textRendering?: import("csstype").Property.TextRendering; textShadow?: import("csstype").Property.TextShadow; textSizeAdjust?: import("csstype").Property.TextSizeAdjust; textTransform?: import("csstype").Property.TextTransform; textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset; textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition; top?: import("csstype").Property.Top; touchAction?: import("csstype").Property.TouchAction; transform?: import("csstype").Property.Transform; transformBox?: import("csstype").Property.TransformBox; transformOrigin?: import("csstype").Property.TransformOrigin; transformStyle?: import("csstype").Property.TransformStyle; transitionDelay?: import("csstype").Property.TransitionDelay; transitionDuration?: import("csstype").Property.TransitionDuration; transitionProperty?: import("csstype").Property.TransitionProperty; transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction; translate?: import("csstype").Property.Translate; unicodeBidi?: import("csstype").Property.UnicodeBidi; userSelect?: import("csstype").Property.UserSelect; verticalAlign?: import("csstype").Property.VerticalAlign; visibility?: import("csstype").Property.Visibility; whiteSpace?: import("csstype").Property.WhiteSpace; widows?: import("csstype").Property.Widows; willChange?: import("csstype").Property.WillChange; wordBreak?: import("csstype").Property.WordBreak; wordSpacing?: import("csstype").Property.WordSpacing; wordWrap?: import("csstype").Property.WordWrap; writingMode?: import("csstype").Property.WritingMode; zIndex?: import("csstype").Property.ZIndex; zoom?: import("csstype").Property.Zoom; all?: import("csstype").Globals; animation?: import("csstype").Property.Animation; background?: import("csstype").Property.Background; backgroundPosition?: import("csstype").Property.BackgroundPosition; border?: import("csstype").Property.Border; borderBlock?: import("csstype").Property.BorderBlock; borderBlockEnd?: import("csstype").Property.BorderBlockEnd; borderBlockStart?: import("csstype").Property.BorderBlockStart; borderBottom?: import("csstype").Property.BorderBottom; borderColor?: import("csstype").Property.BorderColor; borderImage?: import("csstype").Property.BorderImage; borderInline?: import("csstype").Property.BorderInline; borderInlineEnd?: import("csstype").Property.BorderInlineEnd; borderInlineStart?: import("csstype").Property.BorderInlineStart; borderLeft?: import("csstype").Property.BorderLeft; borderRadius?: import("csstype").Property.BorderRadius; borderRight?: import("csstype").Property.BorderRight; borderStyle?: import("csstype").Property.BorderStyle; borderTop?: import("csstype").Property.BorderTop; borderWidth?: import("csstype").Property.BorderWidth; columnRule?: import("csstype").Property.ColumnRule; columns?: import("csstype").Property.Columns; flex?: import("csstype").Property.Flex; flexFlow?: import("csstype").Property.FlexFlow; font?: import("csstype").Property.Font; gap?: import("csstype").Property.Gap; grid?: import("csstype").Property.Grid; gridArea?: import("csstype").Property.GridArea; gridColumn?: import("csstype").Property.GridColumn; gridRow?: import("csstype").Property.GridRow; gridTemplate?: import("csstype").Property.GridTemplate; lineClamp?: import("csstype").Property.LineClamp; listStyle?: import("csstype").Property.ListStyle; margin?: import("csstype").Property.Margin; mask?: import("csstype").Property.Mask; maskBorder?: import("csstype").Property.MaskBorder; motion?: import("csstype").Property.Offset; offset?: import("csstype").Property.Offset; outline?: import("csstype").Property.Outline; overflow?: import("csstype").Property.Overflow; overscrollBehavior?: import("csstype").Property.OverscrollBehavior; padding?: import("csstype").Property.Padding; placeItems?: import("csstype").Property.PlaceItems; placeSelf?: import("csstype").Property.PlaceSelf; textDecoration?: import("csstype").Property.TextDecoration; textEmphasis?: import("csstype").Property.TextEmphasis; transition?: import("csstype").Property.Transition; MozAnimationDelay?: import("csstype").Property.AnimationDelay; MozAnimationDirection?: import("csstype").Property.AnimationDirection; MozAnimationDuration?: import("csstype").Property.AnimationDuration; MozAnimationFillMode?: import("csstype").Property.AnimationFillMode; MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount; MozAnimationName?: import("csstype").Property.AnimationName; MozAnimationPlayState?: import("csstype").Property.AnimationPlayState; MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction; MozAppearance?: import("csstype").Property.MozAppearance; MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility; MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors; MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor; MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle; MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth; MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors; MozBorderRightColors?: import("csstype").Property.MozBorderRightColors; MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor; MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle; MozBorderTopColors?: import("csstype").Property.MozBorderTopColors; MozBoxSizing?: import("csstype").Property.BoxSizing; MozColumnCount?: import("csstype").Property.ColumnCount; MozColumnFill?: import("csstype").Property.ColumnFill; MozColumnGap?: import("csstype").Property.ColumnGap; MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor; MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle; MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth; MozColumnWidth?: import("csstype").Property.ColumnWidth; MozContextProperties?: import("csstype").Property.MozContextProperties; MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings; MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride; MozHyphens?: import("csstype").Property.Hyphens; MozImageRegion?: import("csstype").Property.MozImageRegion; MozMarginEnd?: import("csstype").Property.MarginInlineEnd; MozMarginStart?: import("csstype").Property.MarginInlineStart; MozOrient?: import("csstype").Property.MozOrient; MozOsxFontSmoothing?: import("csstype").Property.FontSmooth; MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd; MozPaddingStart?: import("csstype").Property.PaddingInlineStart; MozPerspective?: import("csstype").Property.Perspective; MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin; MozStackSizing?: import("csstype").Property.MozStackSizing; MozTabSize?: import("csstype").Property.TabSize; MozTextBlink?: import("csstype").Property.MozTextBlink; MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust; MozTransformOrigin?: import("csstype").Property.TransformOrigin; MozTransformStyle?: import("csstype").Property.TransformStyle; MozTransitionDelay?: import("csstype").Property.TransitionDelay; MozTransitionDuration?: import("csstype").Property.TransitionDuration; MozTransitionProperty?: import("csstype").Property.TransitionProperty; MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction; MozUserFocus?: import("csstype").Property.MozUserFocus; MozUserModify?: import("csstype").Property.MozUserModify; MozUserSelect?: import("csstype").Property.UserSelect; MozWindowDragging?: import("csstype").Property.MozWindowDragging; MozWindowShadow?: import("csstype").Property.MozWindowShadow; msAccelerator?: import("csstype").Property.MsAccelerator; msAlignSelf?: import("csstype").Property.AlignSelf; msBlockProgression?: import("csstype").Property.MsBlockProgression; msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining; msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax; msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin; msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints; msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType; msContentZooming?: import("csstype").Property.MsContentZooming; msFilter?: import("csstype").Property.MsFilter; msFlexDirection?: import("csstype").Property.FlexDirection; msFlexPositive?: import("csstype").Property.FlexGrow; msFlowFrom?: import("csstype").Property.MsFlowFrom; msFlowInto?: import("csstype").Property.MsFlowInto; msGridColumns?: import("csstype").Property.MsGridColumns; msGridRows?: import("csstype").Property.MsGridRows; msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust; msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars; msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines; msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone; msHyphens?: import("csstype").Property.Hyphens; msImeAlign?: import("csstype").Property.MsImeAlign; msJustifySelf?: import("csstype").Property.JustifySelf; msLineBreak?: import("csstype").Property.LineBreak; msOrder?: import("csstype").Property.Order; msOverflowStyle?: import("csstype").Property.MsOverflowStyle; msOverflowX?: import("csstype").Property.OverflowX; msOverflowY?: import("csstype").Property.OverflowY; msScrollChaining?: import("csstype").Property.MsScrollChaining; msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax; msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin; msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax; msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin; msScrollRails?: import("csstype").Property.MsScrollRails; msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX; msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY; msScrollSnapType?: import("csstype").Property.MsScrollSnapType; msScrollTranslation?: import("csstype").Property.MsScrollTranslation; msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor; msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor; msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor; msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor; msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor; msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor; msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor; msTextAutospace?: import("csstype").Property.MsTextAutospace; msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright; msTextOverflow?: import("csstype").Property.TextOverflow; msTouchAction?: import("csstype").Property.TouchAction; msTouchSelect?: import("csstype").Property.MsTouchSelect; msTransform?: import("csstype").Property.Transform; msTransformOrigin?: import("csstype").Property.TransformOrigin; msTransitionDelay?: import("csstype").Property.TransitionDelay; msTransitionDuration?: import("csstype").Property.TransitionDuration; msTransitionProperty?: import("csstype").Property.TransitionProperty; msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction; msUserSelect?: import("csstype").Property.MsUserSelect; msWordBreak?: import("csstype").Property.WordBreak; msWrapFlow?: import("csstype").Property.MsWrapFlow; msWrapMargin?: import("csstype").Property.MsWrapMargin; msWrapThrough?: import("csstype").Property.MsWrapThrough; msWritingMode?: import("csstype").Property.WritingMode; WebkitAlignContent?: import("csstype").Property.AlignContent; WebkitAlignItems?: import("csstype").Property.AlignItems; WebkitAlignSelf?: import("csstype").Property.AlignSelf; WebkitAnimationDelay?: import("csstype").Property.AnimationDelay; WebkitAnimationDirection?: import("csstype").Property.AnimationDirection; WebkitAnimationDuration?: import("csstype").Property.AnimationDuration; WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode; WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount; WebkitAnimationName?: import("csstype").Property.AnimationName; WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState; WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction; WebkitAppearance?: import("csstype").Property.WebkitAppearance; WebkitBackdropFilter?: import("csstype").Property.BackdropFilter; WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility; WebkitBackgroundClip?: import("csstype").Property.BackgroundClip; WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin; WebkitBackgroundSize?: import("csstype").Property.BackgroundSize; WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor; WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle; WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth; WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius; WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius; WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice; WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius; WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius; WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak; WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect; WebkitBoxShadow?: import("csstype").Property.BoxShadow; WebkitBoxSizing?: import("csstype").Property.BoxSizing; WebkitClipPath?: import("csstype").Property.ClipPath; WebkitColumnCount?: import("csstype").Property.ColumnCount; WebkitColumnFill?: import("csstype").Property.ColumnFill; WebkitColumnGap?: import("csstype").Property.ColumnGap; WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor; WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle; WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth; WebkitColumnSpan?: import("csstype").Property.ColumnSpan; WebkitColumnWidth?: import("csstype").Property.ColumnWidth; WebkitFilter?: import("csstype").Property.Filter; WebkitFlexBasis?: import("csstype").Property.FlexBasis; WebkitFlexDirection?: import("csstype").Property.FlexDirection; WebkitFlexGrow?: import("csstype").Property.FlexGrow; WebkitFlexShrink?: import("csstype").Property.FlexShrink; WebkitFlexWrap?: import("csstype").Property.FlexWrap; WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings; WebkitFontKerning?: import("csstype").Property.FontKerning; WebkitFontSmoothing?: import("csstype").Property.FontSmooth; WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures; WebkitHyphens?: import("csstype").Property.Hyphens; WebkitJustifyContent?: import("csstype").Property.JustifyContent; WebkitLineBreak?: import("csstype").Property.LineBreak; WebkitLineClamp?: import("csstype").Property.WebkitLineClamp; WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd; WebkitMarginStart?: import("csstype").Property.MarginInlineStart; WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment; WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset; WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat; WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice; WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource; WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth; WebkitMaskClip?: import("csstype").Property.WebkitMaskClip; WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite; WebkitMaskImage?: import("csstype").Property.WebkitMaskImage; WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin; WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition; WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX; WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY; WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat; WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX; WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY; WebkitMaskSize?: import("csstype").Property.WebkitMaskSize; WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize; WebkitOrder?: import("csstype").Property.Order; WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling; WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd; WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart; WebkitPerspective?: import("csstype").Property.Perspective; WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin; WebkitPrintColorAdjust?: import("csstype").Property.ColorAdjust; WebkitRubyPosition?: import("csstype").Property.RubyPosition; WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType; WebkitShapeMargin?: import("csstype").Property.ShapeMargin; WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor; WebkitTextCombine?: import("csstype").Property.TextCombineUpright; WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor; WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine; WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip; WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle; WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor; WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition; WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle; WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor; WebkitTextOrientation?: import("csstype").Property.TextOrientation; WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust; WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor; WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth; WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition; WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout; WebkitTransform?: import("csstype").Property.Transform; WebkitTransformOrigin?: import("csstype").Property.TransformOrigin; WebkitTransformStyle?: import("csstype").Property.TransformStyle; WebkitTransitionDelay?: import("csstype").Property.TransitionDelay; WebkitTransitionDuration?: import("csstype").Property.TransitionDuration; WebkitTransitionProperty?: import("csstype").Property.TransitionProperty; WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction; WebkitUserModify?: import("csstype").Property.WebkitUserModify; WebkitUserSelect?: import("csstype").Property.UserSelect; WebkitWritingMode?: import("csstype").Property.WritingMode; MozAnimation?: import("csstype").Property.Animation; MozBorderImage?: import("csstype").Property.BorderImage; MozColumnRule?: import("csstype").Property.ColumnRule; MozColumns?: import("csstype").Property.Columns; MozTransition?: import("csstype").Property.Transition; msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit; msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap; msFlex?: import("csstype").Property.Flex; msScrollLimit?: import("csstype").Property.MsScrollLimit; msScrollSnapX?: import("csstype").Property.MsScrollSnapX; msScrollSnapY?: import("csstype").Property.MsScrollSnapY; msTransition?: import("csstype").Property.Transition; WebkitAnimation?: import("csstype").Property.Animation; WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore; WebkitBorderImage?: import("csstype").Property.BorderImage; WebkitBorderRadius?: import("csstype").Property.BorderRadius; WebkitColumnRule?: import("csstype").Property.ColumnRule; WebkitColumns?: import("csstype").Property.Columns; WebkitFlex?: import("csstype").Property.Flex; WebkitFlexFlow?: import("csstype").Property.FlexFlow; WebkitMask?: import("csstype").Property.WebkitMask; WebkitMaskBoxImage?: import("csstype").Property.MaskBorder; WebkitTextEmphasis?: import("csstype").Property.TextEmphasis; WebkitTextStroke?: import("csstype").Property.WebkitTextStroke; WebkitTransition?: import("csstype").Property.Transition; azimuth?: import("csstype").Property.Azimuth; boxAlign?: import("csstype").Property.BoxAlign; boxDirection?: import("csstype").Property.BoxDirection; boxFlex?: import("csstype").Property.BoxFlex; boxFlexGroup?: import("csstype").Property.BoxFlexGroup; boxLines?: import("csstype").Property.BoxLines; boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup; boxOrient?: import("csstype").Property.BoxOrient; boxPack?: import("csstype").Property.BoxPack; clip?: import("csstype").Property.Clip; fontVariantAlternates?: import("csstype").Property.FontVariantAlternates; gridColumnGap?: import("csstype").Property.GridColumnGap; gridGap?: import("csstype").Property.GridGap; gridRowGap?: import("csstype").Property.GridRowGap; imeMode?: import("csstype").Property.ImeMode; offsetBlock?: import("csstype").Property.InsetBlock; offsetBlockEnd?: import("csstype").Property.InsetBlockEnd; offsetBlockStart?: import("csstype").Property.InsetBlockStart; offsetInline?: import("csstype").Property.InsetInline; offsetInlineEnd?: import("csstype").Property.InsetInlineEnd; offsetInlineStart?: import("csstype").Property.InsetInlineStart; scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate; scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination; scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX; scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY; scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX; scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY; scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor; KhtmlBoxAlign?: import("csstype").Property.BoxAlign; KhtmlBoxDirection?: import("csstype").Property.BoxDirection; KhtmlBoxFlex?: import("csstype").Property.BoxFlex; KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup; KhtmlBoxLines?: import("csstype").Property.BoxLines; KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup; KhtmlBoxOrient?: import("csstype").Property.BoxOrient; KhtmlBoxPack?: import("csstype").Property.BoxPack; KhtmlLineBreak?: import("csstype").Property.LineBreak; KhtmlOpacity?: import("csstype").Property.Opacity; KhtmlUserSelect?: import("csstype").Property.UserSelect; MozBackgroundClip?: import("csstype").Property.BackgroundClip; MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak; MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin; MozBackgroundSize?: import("csstype").Property.BackgroundSize; MozBinding?: import("csstype").Property.MozBinding; MozBorderRadius?: import("csstype").Property.BorderRadius; MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius; MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius; MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius; MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius; MozBoxAlign?: import("csstype").Property.BoxAlign; MozBoxDirection?: import("csstype").Property.BoxDirection; MozBoxFlex?: import("csstype").Property.BoxFlex; MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup; MozBoxOrient?: import("csstype").Property.BoxOrient; MozBoxPack?: import("csstype").Property.BoxPack; MozBoxShadow?: import("csstype").Property.BoxShadow; MozFloatEdge?: import("csstype").Property.MozFloatEdge; MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon; MozOpacity?: import("csstype").Property.Opacity; MozOutline?: import("csstype").Property.Outline; MozOutlineColor?: import("csstype").Property.OutlineColor; MozOutlineRadius?: import("csstype").Property.MozOutlineRadius; MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft; MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright; MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft; MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright; MozOutlineStyle?: import("csstype").Property.OutlineStyle; MozOutlineWidth?: import("csstype").Property.OutlineWidth; MozTextAlignLast?: import("csstype").Property.TextAlignLast; MozTextDecorationColor?: import("csstype").Property.TextDecorationColor; MozTextDecorationLine?: import("csstype").Property.TextDecorationLine; MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle; MozUserInput?: import("csstype").Property.MozUserInput; msImeMode?: import("csstype").Property.ImeMode; msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor; OAnimation?: import("csstype").Property.Animation; OAnimationDelay?: import("csstype").Property.AnimationDelay; OAnimationDirection?: import("csstype").Property.AnimationDirection; OAnimationDuration?: import("csstype").Property.AnimationDuration; OAnimationFillMode?: import("csstype").Property.AnimationFillMode; OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount; OAnimationName?: import("csstype").Property.AnimationName; OAnimationPlayState?: import("csstype").Property.AnimationPlayState; OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction; OBackgroundSize?: import("csstype").Property.BackgroundSize; OBorderImage?: import("csstype").Property.BorderImage; OObjectFit?: import("csstype").Property.ObjectFit; OObjectPosition?: import("csstype").Property.ObjectPosition; OTabSize?: import("csstype").Property.TabSize; OTextOverflow?: import("csstype").Property.TextOverflow; OTransform?: import("csstype").Property.Transform; OTransformOrigin?: import("csstype").Property.TransformOrigin; OTransition?: import("csstype").Property.Transition; OTransitionDelay?: import("csstype").Property.TransitionDelay; OTransitionDuration?: import("csstype").Property.TransitionDuration; OTransitionProperty?: import("csstype").Property.TransitionProperty; OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction; WebkitBoxAlign?: import("csstype").Property.BoxAlign; WebkitBoxDirection?: import("csstype").Property.BoxDirection; WebkitBoxFlex?: import("csstype").Property.BoxFlex; WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup; WebkitBoxLines?: import("csstype").Property.BoxLines; WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup; WebkitBoxOrient?: import("csstype").Property.BoxOrient; WebkitBoxPack?: import("csstype").Property.BoxPack; WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX; WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY; alignmentBaseline?: import("csstype").Property.AlignmentBaseline; baselineShift?: import("csstype").Property.BaselineShift; clipRule?: import("csstype").Property.ClipRule; colorInterpolation?: import("csstype").Property.ColorInterpolation; colorRendering?: import("csstype").Property.ColorRendering; dominantBaseline?: import("csstype").Property.DominantBaseline; fill?: import("csstype").Property.Fill; fillOpacity?: import("csstype").Property.FillOpacity; fillRule?: import("csstype").Property.FillRule; floodColor?: import("csstype").Property.FloodColor; floodOpacity?: import("csstype").Property.FloodOpacity; glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical; lightingColor?: import("csstype").Property.LightingColor; marker?: import("csstype").Property.Marker; markerEnd?: import("csstype").Property.MarkerEnd; markerMid?: import("csstype").Property.MarkerMid; markerStart?: import("csstype").Property.MarkerStart; shapeRendering?: import("csstype").Property.ShapeRendering; stopColor?: import("csstype").Property.StopColor; stopOpacity?: import("csstype").Property.StopOpacity; stroke?: import("csstype").Property.Stroke; strokeDasharray?: import("csstype").Property.StrokeDasharray; strokeDashoffset?: import("csstype").Property.StrokeDashoffset; strokeLinecap?: import("csstype").Property.StrokeLinecap; strokeLinejoin?: import("csstype").Property.StrokeLinejoin; strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit; strokeOpacity?: import("csstype").Property.StrokeOpacity; strokeWidth?: import("csstype").Property.StrokeWidth; textAnchor?: import("csstype").Property.TextAnchor; vectorEffect?: import("csstype").Property.VectorEffect; }; }; listboxProps: { nodes: import("../../collection").CollectionNode[]; selectedKeys: string[]; validationState: "invalid" | "valid"; onSelectionChange: (event: SyntheticEvent, newValue: string[]) => void; autoFocus: boolean; defaultFocusTarget: string; focusOnHover: boolean; fluid: boolean; "aria-label": string; "aria-labelledby": string; "aria-describedby": string; }; };