@tinybigui/react 0.16.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2624,25 +2624,25 @@ interface RadioHeadlessProps extends AriaRadioProps {
2624
2624
  * Material Design 3 Radio Component (Layer 3: Styled)
2625
2625
  *
2626
2626
  * Built on React Aria for world-class accessibility.
2627
- * Uses CVA for type-safe variant management.
2628
- * Styled with Tailwind CSS using MD3 design tokens.
2629
- * Must be used within a RadioGroup for proper functionality.
2627
+ * Implements the Variants-vs-States architecture: all interaction/selection/error
2628
+ * states are expressed as data-* attributes on the root and consumed by each
2629
+ * slot via group-data-[x]/radio Tailwind selectors no state variants in CVA.
2630
2630
  *
2631
2631
  * Features:
2632
- * - ✅ 2 states: unselected, selected
2632
+ * - ✅ Unselected / selected states
2633
+ * - ✅ Error/invalid state (via RadioGroup isInvalid)
2633
2634
  * - ✅ Ripple effect (Material Design)
2634
2635
  * - ✅ Full keyboard accessibility (via React Aria)
2635
2636
  * - ✅ Screen reader support (via React Aria)
2636
- * - ✅ Focus management (via React Aria)
2637
+ * - ✅ Focus management with MD3 focus ring (no animate-pulse)
2637
2638
  * - ✅ Form integration (name, value props from RadioGroup)
2638
2639
  *
2639
2640
  * MD3 Specifications:
2640
- * - Radio icon: 20x20dp (within 40x40dp touch target)
2641
- * - Outer circle: 20px
2642
- * - Inner dot: 10px (selected state)
2643
- * - Outline width: 2dp
2644
- * - State layers: 8% hover, 12% focus/pressed
2645
- * - Disabled: 38% opacity
2641
+ * - Radio icon: 20×20dp (within 40×40dp touch target)
2642
+ * - Outer circle border: 2dp
2643
+ * - Inner dot: 10dp (selected state, scale 0→1)
2644
+ * - State layers: 8% hover, 10% focus/pressed
2645
+ * - Disabled: 38% opacity (on root)
2646
2646
  * - Label spacing: 16px (ml-4)
2647
2647
  *
2648
2648
  * @example
@@ -2663,11 +2663,6 @@ interface RadioHeadlessProps extends AriaRadioProps {
2663
2663
  * <Radio value="a">Enabled</Radio>
2664
2664
  * <Radio value="b" isDisabled>Disabled</Radio>
2665
2665
  * </RadioGroup>
2666
- *
2667
- * // Custom styling
2668
- * <Radio value="custom" className="my-custom-class">
2669
- * Custom
2670
- * </Radio>
2671
2666
  * ```
2672
2667
  */
2673
2668
  declare const Radio: React__default.ForwardRefExoticComponent<RadioProps & React__default.RefAttributes<HTMLInputElement>>;
@@ -7665,46 +7660,68 @@ interface SearchProps extends Omit<SearchBarProps, "onFocus"> {
7665
7660
  interface SearchBarHeadlessProps extends SearchBarProps {
7666
7661
  /** Ref forwarded to the form element */
7667
7662
  ref?: React__default.Ref<HTMLFormElement>;
7663
+ /**
7664
+ * Slot class names applied directly to the bar's inner elements.
7665
+ * Passed from SearchBar so per-slot CVA classes apply without descendant selectors.
7666
+ */
7667
+ inputClassName?: string | undefined;
7668
+ trailingActionsClassName?: string | undefined;
7668
7669
  }
7669
7670
  /** Props for SearchViewHeadless — the headless primitive for the view */
7670
7671
  interface SearchViewHeadlessProps extends SearchViewProps {
7671
7672
  /** Ref forwarded to the view container div */
7672
7673
  ref?: React__default.Ref<HTMLDivElement>;
7674
+ /**
7675
+ * Slot class names applied directly to inner headless elements.
7676
+ * Passed by SearchView so per-slot CVA classes can be applied
7677
+ * without descendant-selector blobs.
7678
+ */
7679
+ headerClassName?: string;
7680
+ backButtonClassName?: string;
7681
+ clearButtonClassName?: string;
7682
+ inputClassName?: string;
7683
+ trailingActionsClassName?: string | undefined;
7684
+ dividerClassName?: string;
7685
+ contentClassName?: string;
7673
7686
  }
7674
7687
 
7675
7688
  /**
7676
7689
  * Material Design 3 Search Bar Component (Layer 3: Styled)
7677
7690
  *
7678
- * The collapsed/maximized state search affordance that transitions
7679
- * to Focused State (SearchView) on click/focus.
7691
+ * The collapsed/maximized search affordance that transitions to Focused State
7692
+ * (SearchView) on click/focus.
7693
+ *
7694
+ * Implements the Variants-vs-States architecture: all interaction states are
7695
+ * expressed as data-* attributes on the root via `getInteractionDataAttributes`
7696
+ * and consumed by each slot via `group-data-[x]/search` Tailwind selectors.
7680
7697
  *
7681
7698
  * Anatomy:
7682
- * [Container] [Leading icon] [Supporting text/input] [Trailing actions] [Avatar]
7699
+ * [Leading icon] [Input / placeholder] [Trailing actions] [Avatar]
7683
7700
  *
7684
7701
  * Features:
7685
- * - MD3 state layer with hover/active opacity transitions
7686
- * - Ripple effect on press (Material Design state 4)
7687
- * - Focus indicator: 3dp ring in secondary color
7688
- * - M3 Expressive pane margin transition (24dp → 12dp on focus)
7689
- * - Automatic `noActions` variant when no trailing actions/avatar
7702
+ * - MD3 state layer: hover 8% / pressed 10% opacity (Standard fast effects spring)
7703
+ * - Ripple effect on press (Material Design press state)
7704
+ * - Focus ring: Secondary color, 3dp, rendered outside overflow-hidden (sibling pattern)
7705
+ * - M3 Expressive pane margin: 24dp → 12dp on focus (Expressive fast spatial spring)
7706
+ * - Content flag `data-with-actions` switches container spacing: 16dp → 4dp
7690
7707
  *
7691
7708
  * @example
7692
7709
  * ```tsx
7693
7710
  * <SearchBar
7694
7711
  * placeholder="Search messages"
7695
7712
  * leadingIcon={<SearchIcon />}
7696
- * trailingActions={[<IconButton key="mic" icon={<MicIcon />} aria-label="Voice search" />]}
7713
+ * trailingActions={[<IconButton key="mic" aria-label="Voice search"><MicIcon /></IconButton>]}
7697
7714
  * onFocus={() => setOpen(true)}
7698
7715
  * />
7699
7716
  * ```
7700
7717
  */
7701
- declare const SearchBar: React$1.ForwardRefExoticComponent<SearchBarProps & React$1.RefAttributes<HTMLFormElement>>;
7718
+ declare const SearchBar: React__default.ForwardRefExoticComponent<SearchBarProps & React__default.RefAttributes<HTMLFormElement>>;
7702
7719
 
7703
7720
  /**
7704
7721
  * Material Design 3 Search View Component (Layer 3: Styled)
7705
7722
  *
7706
- * The expanded/focused search experience with input and results.
7707
- * Displayed in a portal over page content.
7723
+ * The expanded/focused search experience rendered in a portal over page content.
7724
+ * Uses per-slot CVAs for all styling — no descendant-selector blobs.
7708
7725
  *
7709
7726
  * Anatomy:
7710
7727
  * Header: [Back arrow] [Input] [Clear button] [Optional trailing actions]
@@ -7713,9 +7730,10 @@ declare const SearchBar: React$1.ForwardRefExoticComponent<SearchBarProps & Reac
7713
7730
  *
7714
7731
  * Features:
7715
7732
  * - Portal rendering with focus trap and scroll lock (via headless)
7716
- * - Compound variants for 4 style+layout combinations
7717
- * - Animate on mount with `animate-md-scale-in`
7718
- * - Clear button visible only when input has value
7733
+ * - Compound variants for all 4 style × layout combinations
7734
+ * - Docked layout: animate-md-scale-in on mount
7735
+ * - Fullscreen layout: animate-md-fade-in on mount
7736
+ * - Clear button visible only when input has value (controlled by headless)
7719
7737
  * - aria-live region for autosuggest announcements
7720
7738
  *
7721
7739
  * @example
@@ -7775,6 +7793,7 @@ declare const Search: React$1.ForwardRefExoticComponent<SearchProps & React$1.Re
7775
7793
  * - Keyboard: Enter → onSubmit, Escape (with value) → onClear
7776
7794
  * - Leading icon, trailing actions, and avatar slots
7777
7795
  * - aria-label falls back to placeholder per MD3 labeling spec
7796
+ * - `inputClassName` and `trailingActionsClassName` applied directly to inner elements
7778
7797
  *
7779
7798
  * @example
7780
7799
  * ```tsx
@@ -7785,21 +7804,22 @@ declare const Search: React$1.ForwardRefExoticComponent<SearchProps & React$1.Re
7785
7804
  * />
7786
7805
  * ```
7787
7806
  */
7788
- declare const SearchBarHeadless: React$1.ForwardRefExoticComponent<Omit<SearchBarHeadlessProps, "ref"> & React$1.RefAttributes<HTMLFormElement>>;
7807
+ declare const SearchBarHeadless: React__default.ForwardRefExoticComponent<Omit<SearchBarHeadlessProps, "ref"> & React__default.RefAttributes<HTMLFormElement>>;
7789
7808
  /**
7790
7809
  * SearchViewHeadless — Layer 2 headless primitive for the MD3 Search view.
7791
7810
  *
7792
- * Renders in a portal when `isOpen={true}`. Does not render when closed.
7793
- * Uses `useOverlay` for Escape-key dismissal, `usePreventScroll` to lock
7794
- * body scrolling, and `FocusScope` for focus trapping.
7811
+ * Rendering strategy by layout:
7812
+ * - `fullscreen`: renders in a portal (`createPortal`) with `usePreventScroll` and
7813
+ * `FocusScope contain` the view covers the full viewport.
7814
+ * - `docked`: renders inline (no portal) with `FocusScope restoreFocus autoFocus` only —
7815
+ * the card sits in normal document flow so it can be centered by its wrapper.
7816
+ *
7817
+ * Both layouts use `useOverlay` so Escape key and click-outside dismiss correctly.
7795
7818
  *
7796
7819
  * Features:
7797
- * - Portal rendering via `createPortal`
7798
- * - Escape key → onClose
7799
- * - Body scroll lock when open
7800
- * - Focus trap with auto-focus and restore on close
7820
+ * - Back arrow (MD3 ArrowBack SVG) + input + MD3 Close SVG clear button in header
7801
7821
  * - aria-live region for autosuggest announcements
7802
- * - Back arrow (leading icon) + input + clear button header
7822
+ * - Slot class names from the styled SearchView layer applied directly on elements
7803
7823
  *
7804
7824
  * @example
7805
7825
  * ```tsx
@@ -7812,36 +7832,131 @@ declare const SearchBarHeadless: React$1.ForwardRefExoticComponent<Omit<SearchBa
7812
7832
  * </SearchViewHeadless>
7813
7833
  * ```
7814
7834
  */
7815
- declare const SearchViewHeadless: React$1.ForwardRefExoticComponent<Omit<SearchViewHeadlessProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
7835
+ declare const SearchViewHeadless: React__default.ForwardRefExoticComponent<Omit<SearchViewHeadlessProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
7816
7836
 
7817
7837
  /**
7818
- * Material Design 3 Search Bar container variants (CVA).
7819
- *
7820
- * Base: 56dp height, full rounded pill, surface-container-high background,
7821
- * level-3 elevation, body-large typography.
7838
+ * Material Design 3 Search Variants
7822
7839
  *
7823
- * Spacing follows MD3 Search spec:
7824
- * - Contained (expressive): 4dp leading/trailing with trailing actions
7825
- * - Contained (no actions): 16dp leading/trailing
7826
- * - Divided (baseline): 16dp leading/trailing, 16dp icon-label gap
7840
+ * Architecture: Variants vs States
7841
+ * - CVA holds design-time structure only (no focused/disabled/noActions state variants).
7842
+ * - All interaction states are driven by data-* attributes on the root via
7843
+ * group-data-[x]/search Tailwind selectors in each slot's base classes.
7844
+ * - Content flags (data-with-actions) are set explicitly by the component.
7845
+ *
7846
+ * Search Bar slot responsibilities:
7847
+ * searchBarRootVariants — container pill; shape, color, elevation, spacing by style
7848
+ * searchBarStateLayerVariants — hover/pressed opacity overlay (inside overflow-hidden)
7849
+ * searchBarFocusRingVariants — keyboard focus outline (outside overflow-hidden)
7850
+ * searchBarLeadingIconVariants — 48dp tap target wrapping 24dp icon, on-surface
7851
+ * searchBarTrailingActionVariants — 48dp tap target for each trailing icon, on-surface-variant
7852
+ * searchBarTrailingActionsVariants — flex row wrapper for all trailing actions
7853
+ * searchBarAvatarVariants — 48dp tap target wrapping 30dp rounded-full avatar
7854
+ * searchBarInputVariants — flex-1 text input inside the bar
7855
+ *
7856
+ * Search View slot responsibilities:
7857
+ * searchViewVariants — container; style × layout compound variants
7858
+ * searchViewHeaderVariants — header row; style × layout heights/padding
7859
+ * searchViewBackButtonVariants — 48dp back-arrow tap target, on-surface
7860
+ * searchViewClearButtonVariants — 48dp clear tap target, on-surface-variant
7861
+ * searchViewTrailingActionVariants — 48dp trailing action in view header
7862
+ * searchViewTrailingActionsVariants — flex row wrapper for all view trailing actions
7863
+ * searchViewInputVariants — flex-1 text input inside the view header
7864
+ * searchViewDividerVariants — horizontal rule (divided style only)
7865
+ * searchViewContentVariants — scrollable results/suggestions area
7866
+ *
7867
+ * MD3 Token References:
7868
+ * Container color: SurfaceContainerHigh
7869
+ * Contained bg (fullscreen view): SurfaceContainerLow
7870
+ * Container elevation: Level 3 (6dp)
7871
+ * Leading icon: OnSurface
7872
+ * Trailing icon: OnSurfaceVariant
7873
+ * Placeholder: OnSurfaceVariant
7874
+ * Input text: OnSurface
7875
+ * Focus indicator: Secondary, 3dp
7876
+ * Hover opacity: 8% (MD3 state.hover.state-layer-opacity)
7877
+ * Pressed opacity: 10% (MD3 state.pressed.state-layer-opacity)
7878
+ * Disabled: opacity-38 on container
7827
7879
  *
7828
7880
  * @see docs/md3-components/search/tokens/layout-text.md
7881
+ * @see docs/md3-components/search/tokens/color-tokens-light.md
7882
+ */
7883
+ /**
7884
+ * Search bar container pill.
7885
+ *
7886
+ * Spacing follows MD3 Search Bar spec:
7887
+ * Contained + with actions: px-1 gap-1 (4dp leading/trailing per spec)
7888
+ * Contained + no actions: px-4 (16dp leading/trailing)
7889
+ * Divided: px-4 gap-4 (16dp leading/trailing, 16dp icon-label gap)
7890
+ *
7891
+ * The `contained` variant uses `data-[with-actions]` on the root (a content flag set by the
7892
+ * component) to switch from 16dp → 4dp spacing — no CVA variant needed for this.
7893
+ *
7894
+ * Disabled is self-targeting (data-[disabled]:) because the root carries the data attr.
7895
+ * overflow-hidden intentionally NOT here — the focus ring span sits outside via a sibling
7896
+ * wrapper, so we preserve full ring visibility (same pattern as Button).
7829
7897
  */
7830
- declare const searchBarVariants: (props?: ({
7898
+ declare const searchBarRootVariants: (props?: ({
7831
7899
  style?: "contained" | "divided" | null | undefined;
7832
- noActions?: boolean | null | undefined;
7833
- focused?: boolean | null | undefined;
7834
- disabled?: boolean | null | undefined;
7835
7900
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7836
7901
  /**
7837
- * Material Design 3 Search View container variants (CVA).
7902
+ * State layer absolute inset overlay inside the bar container.
7903
+ *
7904
+ * Must be inside overflow-hidden (placed on the same pill via the root's inner wrapper).
7905
+ * Color: on-surface (MD3 search bar state layer color).
7906
+ * Opacities: hover 8%, pressed 10% (doubled selector wins over hover).
7907
+ * Hidden when disabled (no state affordance on non-interactive element).
7908
+ */
7909
+ declare const searchBarStateLayerVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7910
+ /**
7911
+ * Focus ring overlay.
7912
+ *
7913
+ * Rendered outside the overflow-hidden container (as a sibling, in a relative wrapper)
7914
+ * so it can extend 3px beyond the pill boundary and remain fully visible.
7915
+ * Color: Secondary (MD3 focus indicator color).
7916
+ * Thickness: 3dp (MD3 state.focus-indicator.thickness).
7917
+ */
7918
+ declare const searchBarFocusRingVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7919
+ /**
7920
+ * Leading icon wrapper — 48dp tap target with centered 24dp icon.
7921
+ * Color: on-surface (MD3 leading icon color).
7922
+ */
7923
+ declare const searchBarLeadingIconVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7924
+ /**
7925
+ * Trailing action wrapper — 48dp tap target for each trailing icon button.
7926
+ * Color: on-surface-variant (MD3 trailing icon color).
7927
+ */
7928
+ declare const searchBarTrailingActionVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7929
+ /**
7930
+ * Avatar wrapper — 48dp tap target containing a 30dp rounded-full image/element.
7931
+ * Shape: CornerFull (MD3 avatar shape).
7932
+ * Size: 30dp (MD3 avatar size).
7933
+ */
7934
+ declare const searchBarAvatarVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7935
+ /**
7936
+ * Trailing actions group wrapper — lays out multiple trailing icon slots in a row.
7937
+ * gap = 0 per MD3 spec (contained trailing-actions gap token = 0dp).
7938
+ */
7939
+ declare const searchBarTrailingActionsVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7940
+ /**
7941
+ * Text input inside the search bar.
7942
+ * Typography: body-large (MD3 supporting text / input text font).
7943
+ * Colors: on-surface for input, on-surface-variant for placeholder.
7944
+ *
7945
+ * `min-w-0` is required so `flex-1` can shrink when trailing actions are present.
7946
+ * The native browser search cancel button and decoration are hidden so only our
7947
+ * MD3 clear button (in SearchView) controls clearing.
7948
+ */
7949
+ declare const searchBarInputVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7950
+ /**
7951
+ * Search view container — the expanded/focused search surface.
7838
7952
  *
7839
- * Compound variants express all 4 style+layout combinations:
7840
- * - Contained + fullscreen: surface-container-low, no rounding
7841
- * - Contained + docked: surface-container-high, rounded-xl (12dp)
7842
- * - Divided + fullscreen: surface-container-high, no rounding
7843
- * - Divided + docked: surface-container-high, rounded-[28px] (extra-large)
7953
+ * All 4 style × layout combinations via compound variants:
7954
+ * contained + fullscreen: surface-container-low, no rounding
7955
+ * contained + docked: surface-container-high, rounded-xl (12dp), 2dp gap
7956
+ * divided + fullscreen: surface-container-high, no rounding
7957
+ * divided + docked: surface-container-high, rounded-[28px] (extra-large)
7844
7958
  *
7959
+ * @see docs/md3-components/search/tokens/layout-text.md
7845
7960
  * @see docs/md3-components/search/tokens/color-tokens-light.md
7846
7961
  */
7847
7962
  declare const searchViewVariants: (props?: ({
@@ -7849,12 +7964,12 @@ declare const searchViewVariants: (props?: ({
7849
7964
  layout?: "fullscreen" | "docked" | null | undefined;
7850
7965
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7851
7966
  /**
7852
- * Material Design 3 Search View header variants (CVA).
7967
+ * Search view header row.
7853
7968
  *
7854
- * Heights per style + layout:
7855
- * - Contained: 56dp (both layouts)
7856
- * - Divided + fullscreen: 72dp
7857
- * - Divided + docked: 56dp (overridden by docked variant)
7969
+ * Heights per MD3 spec:
7970
+ * Contained (both layouts): 56dp (h-14), 12dp side padding (px-3)
7971
+ * Divided + fullscreen: 72dp (h-[72px]), 16dp side padding (px-4)
7972
+ * Divided + docked: 56dp (h-14), overridden by docked layout variant
7858
7973
  *
7859
7974
  * @see docs/md3-components/search/tokens/layout-text.md
7860
7975
  */
@@ -7862,6 +7977,48 @@ declare const searchViewHeaderVariants: (props?: ({
7862
7977
  style?: "contained" | "divided" | null | undefined;
7863
7978
  layout?: "fullscreen" | "docked" | null | undefined;
7864
7979
  } & class_variance_authority_types.ClassProp) | undefined) => string;
7980
+ /**
7981
+ * Back arrow button wrapper — 48dp tap target.
7982
+ * Color: on-surface (MD3 header leading icon color).
7983
+ * Includes visual state layer for hover/focus feedback (button handles its own states).
7984
+ */
7985
+ declare const searchViewBackButtonVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7986
+ /**
7987
+ * Clear (✕) button wrapper — 48dp tap target.
7988
+ * Color: on-surface-variant (MD3 trailing icon color).
7989
+ * Transitions opacity when shown/hidden (Standard fast effects).
7990
+ */
7991
+ declare const searchViewClearButtonVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7992
+ /**
7993
+ * Trailing action wrapper in the view header — 48dp tap target.
7994
+ * Color: on-surface-variant (MD3 trailing icon color).
7995
+ */
7996
+ declare const searchViewTrailingActionVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7997
+ /**
7998
+ * Trailing actions group wrapper in the view header — lays out multiple action
7999
+ * slots in a row. gap = 0 per MD3 spec.
8000
+ */
8001
+ declare const searchViewTrailingActionsVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8002
+ /**
8003
+ * Text input inside the view header.
8004
+ * Typography: body-large.
8005
+ * Colors: on-surface for input text, on-surface-variant for placeholder.
8006
+ *
8007
+ * `min-w-0` lets `flex-1` shrink when clear/trailing buttons are present.
8008
+ * Native search affordances hidden — MD3 clear button controls clearing.
8009
+ */
8010
+ declare const searchViewInputVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8011
+ /**
8012
+ * Horizontal divider between the view header and results area.
8013
+ * Color: outline (MD3 divider color).
8014
+ * Only rendered when searchStyle="divided".
8015
+ */
8016
+ declare const searchViewDividerVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
8017
+ /**
8018
+ * Results / suggestions content area.
8019
+ * flex-1 to fill remaining height; overflow-y-auto for independent scroll.
8020
+ */
8021
+ declare const searchViewContentVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
7865
8022
 
7866
8023
  /**
7867
8024
  * Props for the BadgeContent indicator element.
@@ -9066,7 +9223,7 @@ declare const sliderHandleVariants: (props?: ({
9066
9223
  * in Slider.tsx based on useReducedMotion() guard (MD3 Appendix E).
9067
9224
  */
9068
9225
  declare const sliderHandleStateLayerVariants: (props?: ({
9069
- state?: "disabled" | "enabled" | "focused" | "hovered" | "pressed" | null | undefined;
9226
+ state?: "disabled" | "enabled" | "hovered" | "pressed" | "focused" | null | undefined;
9070
9227
  } & class_variance_authority_types.ClassProp) | undefined) => string;
9071
9228
  /**
9072
9229
  * CVA for the track layout container (holds active track + handle + inactive track).
@@ -10204,7 +10361,7 @@ type ClockDialContainerVariants = VariantProps<typeof clockDialContainerVariants
10204
10361
  declare const clockDialNumberVariants: (props?: ({
10205
10362
  selected?: boolean | null | undefined;
10206
10363
  ring?: "outer" | "inner" | null | undefined;
10207
- state?: "enabled" | "focused" | "hovered" | null | undefined;
10364
+ state?: "enabled" | "hovered" | "focused" | null | undefined;
10208
10365
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10209
10366
  type ClockDialNumberVariants = VariantProps<typeof clockDialNumberVariants>;
10210
10367
  /**
@@ -10231,7 +10388,7 @@ type ClockHandHandleVariants = VariantProps<typeof clockHandHandleVariants>;
10231
10388
  */
10232
10389
  declare const timeSelectorContainerVariants: (props?: ({
10233
10390
  selected?: boolean | null | undefined;
10234
- state?: "enabled" | "focused" | "hovered" | null | undefined;
10391
+ state?: "enabled" | "hovered" | "focused" | null | undefined;
10235
10392
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10236
10393
  type TimeSelectorContainerVariants = VariantProps<typeof timeSelectorContainerVariants>;
10237
10394
  /**
@@ -10248,7 +10405,7 @@ type PeriodSelectorContainerVariants = VariantProps<typeof periodSelectorContain
10248
10405
  */
10249
10406
  declare const periodSelectorItemVariants: (props?: ({
10250
10407
  selected?: boolean | null | undefined;
10251
- state?: "enabled" | "focused" | "hovered" | null | undefined;
10408
+ state?: "enabled" | "hovered" | "focused" | null | undefined;
10252
10409
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10253
10410
  type PeriodSelectorItemVariants = VariantProps<typeof periodSelectorItemVariants>;
10254
10411
  /**
@@ -10257,7 +10414,7 @@ type PeriodSelectorItemVariants = VariantProps<typeof periodSelectorItemVariants
10257
10414
  */
10258
10415
  declare const timeInputFieldVariants: (props?: ({
10259
10416
  selected?: boolean | null | undefined;
10260
- state?: "enabled" | "focused" | "hovered" | null | undefined;
10417
+ state?: "enabled" | "hovered" | "focused" | null | undefined;
10261
10418
  } & class_variance_authority_types.ClassProp) | undefined) => string;
10262
10419
  type TimeInputFieldVariants = VariantProps<typeof timeInputFieldVariants>;
10263
10420
  /**
@@ -11834,4 +11991,4 @@ type DateFieldVariants = VariantProps<typeof dateFieldVariants>;
11834
11991
  declare const dateSegmentPlaceholderVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
11835
11992
  type DateSegmentPlaceholderVariants = VariantProps<typeof dateSegmentPlaceholderVariants>;
11836
11993
 
11837
- export { type ActionButtonFocusRingVariants, type ActionButtonSlotProps, type ActionButtonStateLayerVariants, type ActionButtonVariants, type ActionRowVariants, AppBar, AppBarHeadless, type AppBarHeadlessProps, type AppBarProps, type AppBarVariant, Badge, BadgeContent, type BadgeContentProps, BadgeHeadless, type BadgeHeadlessProps, type BadgeProps, type BadgeVariants, BottomSheet, type BottomSheetAnimationState, type BottomSheetAnimationVariants, BottomSheetContext, type BottomSheetContextValue, BottomSheetHandle, type BottomSheetHandleProps, type BottomSheetHandleVariants, BottomSheetHeadless, type BottomSheetHeadlessProps, type BottomSheetProps, type BottomSheetScrimVariants, type BottomSheetVariant, type BottomSheetVariants, Button, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupFocusRingVariants, ButtonGroupHeadless, type ButtonGroupProps, type ButtonGroupRootVariants, type ButtonGroupSelectionMode, type ButtonGroupShape, type ButtonGroupSize, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, type CalendarCellComponentProps, type CalendarCellFocusRingVariants, type CalendarCellProps, type CalendarCellStateLayerVariants, type CalendarCellType, type CalendarCellVariants, CalendarCore, type CalendarCoreProps, type CalendarDividerVariants, type CalendarGridProps, type CalendarHeaderVariants, type CalendarSlots, type CalendarTitleIconVariants, type CalendarTitleStateLayerVariants, type CalendarTitleTextVariants, type CalendarTitleVariants, type CalendarView, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardHeadless, type CardHeadlessProps, CardMedia, type CardMediaProps, type CardProps, type CardVariant, type CardVariants, Checkbox, type CheckboxProps, Chip, ChipHeadless, type ChipHeadlessProps, type ChipProps, ChipSet, type ChipSetProps, type ChipSurface, type ChipType, type ChipVariants, type ClockDialContainerVariants, type ClockDialNumberVariants, type ClockDialProps, type ClockHandCenterVariants, type ClockHandHandleVariants, type ClockHandProps, type ClockHandTrackVariants, type ClockSelectionMode, DateField, type DateFieldProps, type DateFieldVariants, type DateInputErrorVariants, type DateInputFieldGroupVariants, type DateInputFieldProps, type DateInputFieldVariants, type DateInputLabelVariants, DatePicker, type DatePickerActionsProps, type DatePickerCalendarSlots, type DatePickerContainerVariants, DatePickerDocked, type DatePickerDockedProps, type DatePickerHeadlessProps, DatePickerModal, type DatePickerModalHeaderProps, DatePickerModalInput, type DatePickerModalInputProps, type DatePickerModalProps, type DatePickerProps, type DatePickerRenderState, type DatePickerVariant, type DateSegmentPlaceholderVariants, type DateSelectionMode, Dialog, DialogActions, type DialogActionsProps, type DialogAnimationState, DialogContent, type DialogContentProps, DialogContext, type DialogContextValue, DialogHeadless, type DialogHeadlessProps, DialogHeadline, type DialogHeadlineProps, type DialogProps, type DialogVariant, Divider, DividerHeadless, type DividerHeadlessProps, type DividerInset, type DividerOrientation, type DividerProps, type DividerVariants, type DockedFieldGroupVariants, type DockedLabelVariants, type DockedTriggerStateLayerVariants, type DockedTriggerVariants, Drawer, type DrawerContextValue, DrawerIconOnlyContext, DrawerItem, type DrawerItemBadgeConfig, type DrawerItemProps, type DrawerProps, DrawerSection, type DrawerSectionProps, type DrawerVariant, FAB, type FABColor, FABHeadless, type FABHeadlessProps, FABMenu, FABMenuContext, type FABMenuContextValue, type FABMenuDirection, FABMenuHeadless, type FABMenuHeadlessProps, FABMenuItem, type FABMenuItemColor, type FABMenuItemFocusRingVariants, type FABMenuItemIconVariants, type FABMenuItemLabelVariants, type FABMenuItemProps, type FABMenuItemStateLayerVariants, type FABMenuItemVariants, type FABMenuListVariants, type FABMenuProps, type FABMenuVariants, type FABProps, type FABSize, HeadlessDrawer, HeadlessDrawerItem, type HeadlessDrawerItemProps, type HeadlessDrawerProps, HeadlessMenu, HeadlessMenuDivider, HeadlessMenuItem, type HeadlessMenuItemProps, type HeadlessMenuProps, HeadlessMenuSection, type HeadlessMenuSectionProps, HeadlessMenuTrigger, type HeadlessMenuTriggerProps, HeadlessNavigationBar, HeadlessNavigationBarItem, type HeadlessNavigationBarItemProps, type HeadlessNavigationBarProps, HeadlessTab, HeadlessTabList, HeadlessTabPanel, type HeadlessTabPanelProps, type HeadlessTabProps, type HeadlineVariants, IconButton, type IconButtonColor, IconButtonHeadless, type IconButtonHeadlessProps, type IconButtonProps, type IconButtonSize, type IconButtonVariant, List, type ListDensity, ListHeadless, type ListHeadlessProps, ListItem, ListItemHeadless, ListItemLeading, type ListItemLeadingProps, type ListItemProps, ListItemText, type ListItemTextProps, ListItemTrailing, type ListItemTrailingProps, type ListItemVariants, type ListLeadingType, type ListProps, type ListTrailingType, type ListVariants, type MD3ColorRole, type MD3TypographyScale, type MD3TypographySize, type MD3TypographyStyle, Menu, type MenuContainerVariants, MenuContext, type MenuContextValue, MenuDivider, type MenuDividerProps, MenuItem, type MenuItemProps, type MenuProps, MenuSection, type MenuSectionProps, MenuTrigger, type MenuTriggerProps, type ModalDialogVariants, type ModalHeaderVariants, type ModeToggleStateLayerVariants, type ModeToggleVariants, type NavButtonComponentProps, type NavButtonFocusRingVariants, type NavButtonStateLayerVariants, type NavButtonVariants, NavigationBar, type NavigationBarBadge, NavigationBarItem, type NavigationBarItemConfig, type NavigationBarItemProps, type NavigationBarItemRenderProps, type NavigationBarProps, type PeriodSelectorContainerVariants, type PeriodSelectorItemVariants, type PeriodSelectorProps, type PopoverVariants, Progress, ProgressHeadless, type ProgressHeadlessProps, type ProgressProps, Radio, RadioGroup, RadioGroupHeadless, type RadioGroupHeadlessProps, type RadioGroupProps, RadioHeadless, type RadioHeadlessProps, type RadioProps, type RangeCalendarProps, RichTooltip, type RichTooltipProps, type RichTooltipVariants, STATE_LAYER_OPACITY, type ScrimVariants, Search, SearchBar, SearchBarHeadless, type SearchBarHeadlessProps, type SearchBarProps, type SearchLayout, type SearchProps, type SearchStyle, SearchView, SearchViewHeadless, type SearchViewHeadlessProps, type SearchViewProps, Slider, SliderHeadless, type SliderHeadlessProps, type SliderOrientation, type SliderProps, type SliderRangeThumbLabels, type SliderRenderState, type SliderSize, type SliderThumbProps, type SliderThumbState, type SliderVariant, Snackbar, type SnackbarAction, SnackbarContext, type SnackbarContextValue, SnackbarHeadless, type SnackbarHeadlessProps, type SnackbarItem, type SnackbarProps, SnackbarProvider, type SnackbarProviderProps, type SnackbarSeverity, SplitButton, type SplitButtonContainerVariants, type SplitButtonDropdownVariants, SplitButtonHeadless, type SplitButtonHeadlessProps, type SplitButtonMenuItem, type SplitButtonPrimaryVariants, type SplitButtonProps, type SplitButtonSize, type SplitButtonVariant, StyledActionButton, StyledCalendarCell, StyledCalendarTitle, StyledNavButton, StyledWeekday, StyledYearItem, type SupportingTextVariants, Switch, type SwitchProps, TYPOGRAPHY_ELEMENT_MAP, TYPOGRAPHY_USAGE, Tab, type TabItem, type TabLayout, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, type TabVariant, Tabs, type TabsProps, TextField, type TextFieldProps, type TextFieldVariant, type TimeFormat, type TimeInputFieldProps, type TimeInputFieldVariants, type TimePeriod, TimePicker, type TimePickerActionButtonVariants, type TimePickerActionRowVariants, type TimePickerContainerVariants, TimePickerDial, type TimePickerDialProps, type TimePickerHeadlessProps, type TimePickerHeadlineVariants, TimePickerInput, type TimePickerInputProps, type TimePickerModeToggleVariants, type TimePickerOrientation, type TimePickerProps, type TimePickerRenderState, type TimePickerVariant, type TimeSelectorContainerVariants, type TimeSelectorProps, type TimeSeparatorVariants, type TimeValue, type TitleComponentProps, Tooltip, type TooltipHeadlessProps, TooltipOverlayHeadless, type TooltipPlacement, type TooltipProps, TooltipTrigger, TooltipTriggerHeadless, type TooltipTriggerProps, type TooltipTriggerStyledProps, type TooltipVariant, type TooltipVariants, type TypographyProperty, type TypographyStyleObject, type UseBottomSheetDragOptions, type UseBottomSheetDragReturn, type WeekdayVariants, type YearGridVariants, type YearItemComponentProps, type YearItemFocusRingVariants, type YearItemStateLayerVariants, type YearItemVariants, actionButtonFocusRingVariants, actionButtonStateLayerVariants, actionButtonVariants, actionRowVariants, applyStateLayer, badgeVariants, bottomSheetAnimationVariants, bottomSheetHandlePillVariants, bottomSheetHandleWrapperVariants, bottomSheetScrimVariants, bottomSheetVariants, buttonGroupFocusRingVariants, buttonGroupRootVariants, buttonGroupVariants, calendarCellFocusRingVariants, calendarCellStateLayerVariants, calendarCellVariants, calendarDividerVariants, calendarHeaderVariants, calendarTitleIconVariants, calendarTitleStateLayerVariants, calendarTitleTextVariants, calendarTitleVariants, cardVariants, chipVariants, clockDialContainerVariants, clockDialNumberVariants, clockHandCenterVariants, clockHandHandleVariants, clockHandTrackVariants, cn, dateFieldVariants, dateInputErrorVariants, dateInputFieldGroupVariants, dateInputFieldVariants, dateInputLabelVariants, datePickerContainerVariants, dateSegmentPlaceholderVariants, dividerVariants, dockedFieldGroupVariants, dockedLabelVariants, dockedTriggerStateLayerVariants, dockedTriggerVariants, fabMenuItemFocusRingVariants, fabMenuItemIconVariants, fabMenuItemLabelVariants, fabMenuItemStateLayerVariants, fabMenuItemVariants, fabMenuListVariants, fabMenuVariants, generateMD3Theme, getColorValue, getConnectedRadiusClasses, getFontFamily, getMD3Color, getResponsiveTypography, getTypographyClassName, getTypographyForElement, getTypographyStyle, getTypographyToken, headlineVariants, hexToRgb, listItemVariants, listVariants, modalDialogVariants, modalHeaderVariants, modeToggleStateLayerVariants, modeToggleVariants, navButtonFocusRingVariants, navButtonStateLayerVariants, navButtonVariants, periodSelectorContainerVariants, periodSelectorItemVariants, popoverVariants, pxToRem, remToPx, rgbToHex, richTooltipVariants, scrimVariants, searchBarVariants, searchViewHeaderVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonDropdownVariants, splitButtonPrimaryVariants, splitButtonVariants, supportingTextVariants, timeInputFieldVariants, timePickerActionButtonVariants, timePickerActionRowVariants, timePickerContainerVariants, timePickerHeadlineVariants, timePickerModeToggleVariants, timeSelectorContainerVariants, timeSeparatorVariants, tooltipVariants, truncateText, useBottomSheetContext, useBottomSheetDrag, useButtonGroup, useDialogContext, useFABMenuContext, useMenuContext, useOptionalButtonGroup, useSnackbar, weekdayVariants, withOpacity, yearGridVariants, yearItemFocusRingVariants, yearItemStateLayerVariants, yearItemVariants };
11994
+ export { type ActionButtonFocusRingVariants, type ActionButtonSlotProps, type ActionButtonStateLayerVariants, type ActionButtonVariants, type ActionRowVariants, AppBar, AppBarHeadless, type AppBarHeadlessProps, type AppBarProps, type AppBarVariant, Badge, BadgeContent, type BadgeContentProps, BadgeHeadless, type BadgeHeadlessProps, type BadgeProps, type BadgeVariants, BottomSheet, type BottomSheetAnimationState, type BottomSheetAnimationVariants, BottomSheetContext, type BottomSheetContextValue, BottomSheetHandle, type BottomSheetHandleProps, type BottomSheetHandleVariants, BottomSheetHeadless, type BottomSheetHeadlessProps, type BottomSheetProps, type BottomSheetScrimVariants, type BottomSheetVariant, type BottomSheetVariants, Button, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupFocusRingVariants, ButtonGroupHeadless, type ButtonGroupProps, type ButtonGroupRootVariants, type ButtonGroupSelectionMode, type ButtonGroupShape, type ButtonGroupSize, type ButtonGroupVariant, type ButtonProps, type ButtonSize, type ButtonVariant, type CalendarCellComponentProps, type CalendarCellFocusRingVariants, type CalendarCellProps, type CalendarCellStateLayerVariants, type CalendarCellType, type CalendarCellVariants, CalendarCore, type CalendarCoreProps, type CalendarDividerVariants, type CalendarGridProps, type CalendarHeaderVariants, type CalendarSlots, type CalendarTitleIconVariants, type CalendarTitleStateLayerVariants, type CalendarTitleTextVariants, type CalendarTitleVariants, type CalendarView, Card, CardActions, type CardActionsProps, CardContent, type CardContentProps, CardHeader, type CardHeaderProps, CardHeadless, type CardHeadlessProps, CardMedia, type CardMediaProps, type CardProps, type CardVariant, type CardVariants, Checkbox, type CheckboxProps, Chip, ChipHeadless, type ChipHeadlessProps, type ChipProps, ChipSet, type ChipSetProps, type ChipSurface, type ChipType, type ChipVariants, type ClockDialContainerVariants, type ClockDialNumberVariants, type ClockDialProps, type ClockHandCenterVariants, type ClockHandHandleVariants, type ClockHandProps, type ClockHandTrackVariants, type ClockSelectionMode, DateField, type DateFieldProps, type DateFieldVariants, type DateInputErrorVariants, type DateInputFieldGroupVariants, type DateInputFieldProps, type DateInputFieldVariants, type DateInputLabelVariants, DatePicker, type DatePickerActionsProps, type DatePickerCalendarSlots, type DatePickerContainerVariants, DatePickerDocked, type DatePickerDockedProps, type DatePickerHeadlessProps, DatePickerModal, type DatePickerModalHeaderProps, DatePickerModalInput, type DatePickerModalInputProps, type DatePickerModalProps, type DatePickerProps, type DatePickerRenderState, type DatePickerVariant, type DateSegmentPlaceholderVariants, type DateSelectionMode, Dialog, DialogActions, type DialogActionsProps, type DialogAnimationState, DialogContent, type DialogContentProps, DialogContext, type DialogContextValue, DialogHeadless, type DialogHeadlessProps, DialogHeadline, type DialogHeadlineProps, type DialogProps, type DialogVariant, Divider, DividerHeadless, type DividerHeadlessProps, type DividerInset, type DividerOrientation, type DividerProps, type DividerVariants, type DockedFieldGroupVariants, type DockedLabelVariants, type DockedTriggerStateLayerVariants, type DockedTriggerVariants, Drawer, type DrawerContextValue, DrawerIconOnlyContext, DrawerItem, type DrawerItemBadgeConfig, type DrawerItemProps, type DrawerProps, DrawerSection, type DrawerSectionProps, type DrawerVariant, FAB, type FABColor, FABHeadless, type FABHeadlessProps, FABMenu, FABMenuContext, type FABMenuContextValue, type FABMenuDirection, FABMenuHeadless, type FABMenuHeadlessProps, FABMenuItem, type FABMenuItemColor, type FABMenuItemFocusRingVariants, type FABMenuItemIconVariants, type FABMenuItemLabelVariants, type FABMenuItemProps, type FABMenuItemStateLayerVariants, type FABMenuItemVariants, type FABMenuListVariants, type FABMenuProps, type FABMenuVariants, type FABProps, type FABSize, HeadlessDrawer, HeadlessDrawerItem, type HeadlessDrawerItemProps, type HeadlessDrawerProps, HeadlessMenu, HeadlessMenuDivider, HeadlessMenuItem, type HeadlessMenuItemProps, type HeadlessMenuProps, HeadlessMenuSection, type HeadlessMenuSectionProps, HeadlessMenuTrigger, type HeadlessMenuTriggerProps, HeadlessNavigationBar, HeadlessNavigationBarItem, type HeadlessNavigationBarItemProps, type HeadlessNavigationBarProps, HeadlessTab, HeadlessTabList, HeadlessTabPanel, type HeadlessTabPanelProps, type HeadlessTabProps, type HeadlineVariants, IconButton, type IconButtonColor, IconButtonHeadless, type IconButtonHeadlessProps, type IconButtonProps, type IconButtonSize, type IconButtonVariant, List, type ListDensity, ListHeadless, type ListHeadlessProps, ListItem, ListItemHeadless, ListItemLeading, type ListItemLeadingProps, type ListItemProps, ListItemText, type ListItemTextProps, ListItemTrailing, type ListItemTrailingProps, type ListItemVariants, type ListLeadingType, type ListProps, type ListTrailingType, type ListVariants, type MD3ColorRole, type MD3TypographyScale, type MD3TypographySize, type MD3TypographyStyle, Menu, type MenuContainerVariants, MenuContext, type MenuContextValue, MenuDivider, type MenuDividerProps, MenuItem, type MenuItemProps, type MenuProps, MenuSection, type MenuSectionProps, MenuTrigger, type MenuTriggerProps, type ModalDialogVariants, type ModalHeaderVariants, type ModeToggleStateLayerVariants, type ModeToggleVariants, type NavButtonComponentProps, type NavButtonFocusRingVariants, type NavButtonStateLayerVariants, type NavButtonVariants, NavigationBar, type NavigationBarBadge, NavigationBarItem, type NavigationBarItemConfig, type NavigationBarItemProps, type NavigationBarItemRenderProps, type NavigationBarProps, type PeriodSelectorContainerVariants, type PeriodSelectorItemVariants, type PeriodSelectorProps, type PopoverVariants, Progress, ProgressHeadless, type ProgressHeadlessProps, type ProgressProps, Radio, RadioGroup, RadioGroupHeadless, type RadioGroupHeadlessProps, type RadioGroupProps, RadioHeadless, type RadioHeadlessProps, type RadioProps, type RangeCalendarProps, RichTooltip, type RichTooltipProps, type RichTooltipVariants, STATE_LAYER_OPACITY, type ScrimVariants, Search, SearchBar, SearchBarHeadless, type SearchBarHeadlessProps, type SearchBarProps, type SearchLayout, type SearchProps, type SearchStyle, SearchView, SearchViewHeadless, type SearchViewHeadlessProps, type SearchViewProps, Slider, SliderHeadless, type SliderHeadlessProps, type SliderOrientation, type SliderProps, type SliderRangeThumbLabels, type SliderRenderState, type SliderSize, type SliderThumbProps, type SliderThumbState, type SliderVariant, Snackbar, type SnackbarAction, SnackbarContext, type SnackbarContextValue, SnackbarHeadless, type SnackbarHeadlessProps, type SnackbarItem, type SnackbarProps, SnackbarProvider, type SnackbarProviderProps, type SnackbarSeverity, SplitButton, type SplitButtonContainerVariants, type SplitButtonDropdownVariants, SplitButtonHeadless, type SplitButtonHeadlessProps, type SplitButtonMenuItem, type SplitButtonPrimaryVariants, type SplitButtonProps, type SplitButtonSize, type SplitButtonVariant, StyledActionButton, StyledCalendarCell, StyledCalendarTitle, StyledNavButton, StyledWeekday, StyledYearItem, type SupportingTextVariants, Switch, type SwitchProps, TYPOGRAPHY_ELEMENT_MAP, TYPOGRAPHY_USAGE, Tab, type TabItem, type TabLayout, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, type TabVariant, Tabs, type TabsProps, TextField, type TextFieldProps, type TextFieldVariant, type TimeFormat, type TimeInputFieldProps, type TimeInputFieldVariants, type TimePeriod, TimePicker, type TimePickerActionButtonVariants, type TimePickerActionRowVariants, type TimePickerContainerVariants, TimePickerDial, type TimePickerDialProps, type TimePickerHeadlessProps, type TimePickerHeadlineVariants, TimePickerInput, type TimePickerInputProps, type TimePickerModeToggleVariants, type TimePickerOrientation, type TimePickerProps, type TimePickerRenderState, type TimePickerVariant, type TimeSelectorContainerVariants, type TimeSelectorProps, type TimeSeparatorVariants, type TimeValue, type TitleComponentProps, Tooltip, type TooltipHeadlessProps, TooltipOverlayHeadless, type TooltipPlacement, type TooltipProps, TooltipTrigger, TooltipTriggerHeadless, type TooltipTriggerProps, type TooltipTriggerStyledProps, type TooltipVariant, type TooltipVariants, type TypographyProperty, type TypographyStyleObject, type UseBottomSheetDragOptions, type UseBottomSheetDragReturn, type WeekdayVariants, type YearGridVariants, type YearItemComponentProps, type YearItemFocusRingVariants, type YearItemStateLayerVariants, type YearItemVariants, actionButtonFocusRingVariants, actionButtonStateLayerVariants, actionButtonVariants, actionRowVariants, applyStateLayer, badgeVariants, bottomSheetAnimationVariants, bottomSheetHandlePillVariants, bottomSheetHandleWrapperVariants, bottomSheetScrimVariants, bottomSheetVariants, buttonGroupFocusRingVariants, buttonGroupRootVariants, buttonGroupVariants, calendarCellFocusRingVariants, calendarCellStateLayerVariants, calendarCellVariants, calendarDividerVariants, calendarHeaderVariants, calendarTitleIconVariants, calendarTitleStateLayerVariants, calendarTitleTextVariants, calendarTitleVariants, cardVariants, chipVariants, clockDialContainerVariants, clockDialNumberVariants, clockHandCenterVariants, clockHandHandleVariants, clockHandTrackVariants, cn, dateFieldVariants, dateInputErrorVariants, dateInputFieldGroupVariants, dateInputFieldVariants, dateInputLabelVariants, datePickerContainerVariants, dateSegmentPlaceholderVariants, dividerVariants, dockedFieldGroupVariants, dockedLabelVariants, dockedTriggerStateLayerVariants, dockedTriggerVariants, fabMenuItemFocusRingVariants, fabMenuItemIconVariants, fabMenuItemLabelVariants, fabMenuItemStateLayerVariants, fabMenuItemVariants, fabMenuListVariants, fabMenuVariants, generateMD3Theme, getColorValue, getConnectedRadiusClasses, getFontFamily, getMD3Color, getResponsiveTypography, getTypographyClassName, getTypographyForElement, getTypographyStyle, getTypographyToken, headlineVariants, hexToRgb, listItemVariants, listVariants, modalDialogVariants, modalHeaderVariants, modeToggleStateLayerVariants, modeToggleVariants, navButtonFocusRingVariants, navButtonStateLayerVariants, navButtonVariants, periodSelectorContainerVariants, periodSelectorItemVariants, popoverVariants, pxToRem, remToPx, rgbToHex, richTooltipVariants, scrimVariants, searchBarAvatarVariants, searchBarFocusRingVariants, searchBarInputVariants, searchBarLeadingIconVariants, searchBarRootVariants, searchBarStateLayerVariants, searchBarTrailingActionVariants, searchBarTrailingActionsVariants, searchViewBackButtonVariants, searchViewClearButtonVariants, searchViewContentVariants, searchViewDividerVariants, searchViewHeaderVariants, searchViewInputVariants, searchViewTrailingActionVariants, searchViewTrailingActionsVariants, searchViewVariants, sliderActiveTrackVariants, sliderContainerVariants, sliderHandleStateLayerVariants, sliderHandleVariants, sliderInactiveTrackVariants, sliderTrackLayoutVariants, splitButtonContainerVariants, splitButtonDropdownVariants, splitButtonPrimaryVariants, splitButtonVariants, supportingTextVariants, timeInputFieldVariants, timePickerActionButtonVariants, timePickerActionRowVariants, timePickerContainerVariants, timePickerHeadlineVariants, timePickerModeToggleVariants, timeSelectorContainerVariants, timeSeparatorVariants, tooltipVariants, truncateText, useBottomSheetContext, useBottomSheetDrag, useButtonGroup, useDialogContext, useFABMenuContext, useMenuContext, useOptionalButtonGroup, useSnackbar, weekdayVariants, withOpacity, yearGridVariants, yearItemFocusRingVariants, yearItemStateLayerVariants, yearItemVariants };