@moderneinc/neo-styled-components 5.0.0-next.03345c → 5.0.0-next.06aac6

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.
@@ -0,0 +1,11 @@
1
+ import { type SvgIconProps } from '@mui/material/SvgIcon';
2
+ /**
3
+ * NeoCanceledIcon - Outlined circle struck through by a horizontal line.
4
+ *
5
+ * Marks a CANCELED state. Color comes entirely from `currentColor` (stroke plus
6
+ * a 10% fill tint); set it via the `color`/`sx` prop or a parent.
7
+ */
8
+ export declare const NeoCanceledIcon: {
9
+ (props: SvgIconProps): import("react/jsx-runtime").JSX.Element;
10
+ displayName: string;
11
+ };
@@ -1,11 +1,12 @@
1
1
  import { type CheckboxProps } from '@mui/material/Checkbox';
2
2
  import type { ReactNode } from 'react';
3
3
  /**
4
- * Custom checkbox icons matching Figma design
5
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=11487-81
4
+ * NeoCheckbox uses Lucide icons (square / square-check / square-minus): a rounded
5
+ * outline drawn in `currentColor`, with the check/minus mark sharing that stroke —
6
+ * so a single per-state `color` (set in StyledCheckbox) drives every variant.
6
7
  *
8
+ * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=11487-81
7
9
  * Checkbox sizes: xs=12x12, small=16x16, medium=20x20
8
- * Check/minus paths scaled from Untitled UI (originally 24x24)
9
10
  */
10
11
  type CheckboxSize = 'xs' | 'small' | 'medium';
11
12
  declare module '@mui/material/Checkbox' {
@@ -15,7 +16,7 @@ declare module '@mui/material/Checkbox' {
15
16
  medium: true;
16
17
  }
17
18
  }
18
- declare const StyledCheckbox: import("@emotion/styled").StyledComponent<CheckboxProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
19
+ declare const StyledCheckbox: import("@emotion/styled").StyledComponent<CheckboxProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
19
20
  size?: CheckboxSize;
20
21
  disabled?: boolean;
21
22
  }, {}, {}>;
@@ -3,4 +3,4 @@
3
3
  *
4
4
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8521
5
5
  */
6
- export declare const NeoDatePickerListItem: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
+ export declare const NeoDatePickerListItem: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -3,4 +3,4 @@
3
3
  *
4
4
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4176-8593
5
5
  */
6
- export declare const NeoDatePickerMenu: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
+ export declare const NeoDatePickerMenu: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -0,0 +1,41 @@
1
+ import { type SvgIconProps } from '@mui/material/SvgIcon';
2
+ /**
3
+ * Filled status icons — sourced from the published Figma library components
4
+ * Filled_Success / Filled_Queued / Filled_Info / Filled_Warning / Filled_Error /
5
+ * Filled_Neutral / Filled_Canceled.
6
+ *
7
+ * Designed at 16px; size via `fontSize` like any MUI `SvgIcon`. Each ships its
8
+ * intent's status color baked into the silhouette with a white inner glyph — the
9
+ * fill is fixed, so `color`/`htmlColor` are omitted from the props. There is no
10
+ * Filled_Active (the open-arc spinner cannot fill). Use below 18px; above that,
11
+ * prefer the Lucide outline glyph.
12
+ */
13
+ export type NeoFilledStatusIconProps = Omit<SvgIconProps, 'color' | 'htmlColor'>;
14
+ export declare const NeoFilledSuccess: {
15
+ (props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
16
+ displayName: string;
17
+ };
18
+ export declare const NeoFilledQueued: {
19
+ (props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
20
+ displayName: string;
21
+ };
22
+ export declare const NeoFilledInfo: {
23
+ (props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
24
+ displayName: string;
25
+ };
26
+ export declare const NeoFilledWarning: {
27
+ (props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
28
+ displayName: string;
29
+ };
30
+ export declare const NeoFilledError: {
31
+ (props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
32
+ displayName: string;
33
+ };
34
+ export declare const NeoFilledNeutral: {
35
+ (props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
36
+ displayName: string;
37
+ };
38
+ export declare const NeoFilledCanceled: {
39
+ (props: NeoFilledStatusIconProps): import("react/jsx-runtime").JSX.Element;
40
+ displayName: string;
41
+ };
@@ -2,15 +2,15 @@ import { type InputBaseProps } from '@mui/material/InputBase';
2
2
  import type { ReactNode } from 'react';
3
3
  type InputFieldSize = 'small' | 'medium';
4
4
  export type { InputFieldSize as NeoInputFieldSize };
5
- export declare const StyledFormControl: import("@emotion/styled").StyledComponent<import("@mui/material/FormControl").FormControlOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "color" | "margin" | "size" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "error" | "fullWidth" | "required" | "focused" | "hiddenLabel"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
5
+ export declare const StyledFormControl: import("@emotion/styled").StyledComponent<import("@mui/material").FormControlOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "color" | "margin" | "size" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "error" | "fullWidth" | "required" | "focused" | "hiddenLabel"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
6
6
  size?: InputFieldSize;
7
7
  }, {}, {}>;
8
- export declare const StyledInputLabel: import("@emotion/styled").StyledComponent<import("@mui/material/InputLabel").InputLabelOwnProps & Pick<import("@mui/material/FormLabel").FormLabelOwnProps, "color" | "filled"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "style" | "color" | "margin" | "size" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "filled" | "error" | "required" | "focused" | "disableAnimation" | "shrink"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
8
+ export declare const StyledInputLabel: import("@emotion/styled").StyledComponent<import("@mui/material").InputLabelOwnProps & Pick<import("@mui/material").FormLabelOwnProps, "color" | "filled"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "style" | "color" | "margin" | "size" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "filled" | "error" | "required" | "focused" | "disableAnimation" | "shrink"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
9
9
  size?: InputFieldSize;
10
10
  infoIcon?: boolean;
11
11
  }, {}, {}>;
12
- export declare const InfoIconWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
13
- export declare const StyledFormHelperText: import("@emotion/styled").StyledComponent<import("@mui/material/FormHelperText").FormHelperTextOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "style" | "margin" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "filled" | "error" | "required" | "focused"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
12
+ export declare const InfoIconWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
13
+ export declare const StyledFormHelperText: import("@emotion/styled").StyledComponent<import("@mui/material").FormHelperTextOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "style" | "margin" | "children" | "sx" | "className" | "classes" | "disabled" | "variant" | "filled" | "error" | "required" | "focused"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
14
14
  size?: InputFieldSize;
15
15
  }, {}, {}>;
16
16
  export interface NeoInputFieldProps extends Omit<InputBaseProps, 'size'> {
@@ -21,6 +21,11 @@ type NeoNavigationItemOwnProps = {
21
21
  * @figma Tag
22
22
  */
23
23
  tag?: string;
24
+ /**
25
+ * Hover tooltip shown only when the surrounding NeoSideNav is collapsed
26
+ * (and the label is therefore hidden).
27
+ */
28
+ tooltip?: ReactNode;
24
29
  /**
25
30
  * Slot props for internal sub-components.
26
31
  */
@@ -47,7 +52,7 @@ export type NeoNavigationItemProps<C extends ElementType = typeof ButtonBase> =
47
52
  *
48
53
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC/Neo---Moderne-Design-system---2025?node-id=8455-6120
49
54
  */
50
- export declare function NeoNavigationItem<C extends ElementType = typeof ButtonBase>({ icon, label, selected, tag, slotProps, children, ...props }: NeoNavigationItemProps<C>): import("react/jsx-runtime").JSX.Element;
55
+ export declare function NeoNavigationItem<C extends ElementType = typeof ButtonBase>({ icon, label, selected, tag, tooltip, slotProps, children, ...props }: NeoNavigationItemProps<C>): import("react/jsx-runtime").JSX.Element;
51
56
  export declare namespace NeoNavigationItem {
52
57
  var displayName: string;
53
58
  }
@@ -3,4 +3,4 @@
3
3
  *
4
4
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11565-7682
5
5
  */
6
- export declare const NeoRadioButtonWithText: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
+ export declare const NeoRadioButtonWithText: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -0,0 +1,12 @@
1
+ import { type BoxProps } from '@mui/material';
2
+ import type { FunctionComponent } from 'react';
3
+ export interface NeoRipplingDotProps extends BoxProps {
4
+ }
5
+ /**
6
+ * NeoRipplingDot - Animated status dot with an expanding ripple ring.
7
+ *
8
+ * Indicates an in-progress, indeterminate state (RUNNING / SYNCING / PROCESSING).
9
+ * Color is inherited from `currentColor`; set it via the `color`/`sx` prop or a
10
+ * parent. Sized to the lowercase-letter height regardless of parent fontSize.
11
+ */
12
+ export declare const NeoRipplingDot: FunctionComponent<NeoRipplingDotProps>;
@@ -0,0 +1,5 @@
1
+ export type NeoSideNavContextValue = {
2
+ collapsed: boolean;
3
+ };
4
+ export declare const NeoSideNavContext: import("react").Context<NeoSideNavContextValue>;
5
+ export declare const useNeoSideNav: () => NeoSideNavContextValue;
@@ -1,6 +1,19 @@
1
- /**
2
- * NeoSideNav
3
- *
4
- * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4065-3425
5
- */
6
- export declare const NeoSideNav: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1
+ import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
2
+ export type NeoSideNavProps = {
3
+ /** Controlled collapsed state. */
4
+ collapsed: boolean;
5
+ /** Called with the next collapsed value when the toggle is activated. */
6
+ onCollapsedChange: (next: boolean) => void;
7
+ /** Fixed top slot (e.g. product logo). */
8
+ header?: ReactNode;
9
+ /** Fixed bottom slot (e.g. tenant branding), rendered above the toggle. */
10
+ footer?: ReactNode;
11
+ /** Scrolling content slot — the nav items. */
12
+ children: ReactNode;
13
+ /** Toggle label shown when expanded. Default "Less". */
14
+ collapseLabel?: string;
15
+ } & Pick<ComponentPropsWithoutRef<'nav'>, 'className' | 'id' | 'aria-label'>;
16
+ export declare function NeoSideNav({ collapsed, onCollapsedChange, header, footer, children, collapseLabel, ...rest }: NeoSideNavProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare namespace NeoSideNav {
18
+ var displayName: string;
19
+ }
@@ -10,7 +10,7 @@ import type { ReactNode } from 'react';
10
10
  * - Tab selection → value prop + onChange
11
11
  * - Active indicator → styled via indicator slot
12
12
  */
13
- export declare const NeoTabs: import("@emotion/styled").StyledComponent<import("@mui/material/Tabs").TabsOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "children" | "sx" | "className" | "aria-label" | "aria-labelledby" | "onChange" | "classes" | "action" | "value" | "variant" | "orientation" | "slots" | "slotProps" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
13
+ export declare const NeoTabs: import("@emotion/styled").StyledComponent<import("@mui/material").TabsOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "children" | "sx" | "className" | "aria-label" | "aria-labelledby" | "onChange" | "classes" | "action" | "value" | "variant" | "orientation" | "slots" | "slotProps" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
14
14
  export interface NeoTabProps extends Omit<TabProps, 'label'> {
15
15
  /**
16
16
  * The label for the tab
@@ -3,4 +3,4 @@
3
3
  *
4
4
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=11565-10485
5
5
  */
6
- export declare const NeoToggleButtonWithText: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
+ export declare const NeoToggleButtonWithText: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,4 +1,5 @@
1
1
  import { type TooltipProps } from '@mui/material/Tooltip';
2
+ import type { ReactNode } from 'react';
2
3
  /**
3
4
  * Variant type for NeoTooltip
4
5
  */
@@ -14,13 +15,15 @@ export interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'>
14
15
  */
15
16
  variant?: TooltipVariant;
16
17
  /**
17
- * The main tooltip text
18
+ * The main tooltip content. Accepts a string or any ReactNode, so callers can
19
+ * compose richer content when the `description` variant isn't enough.
18
20
  * @figma text (literal content, not a variant property)
19
21
  */
20
- title: string;
22
+ title: ReactNode;
21
23
  /**
22
- * Optional supporting description text
23
- * When provided, shows a larger tooltip with title (semibold) + description (medium)
24
+ * Optional supporting description text. When provided, shows a larger tooltip
25
+ * with a heading + body hierarchy: title (13px semibold) above a muted
26
+ * description (12px medium).
24
27
  * @default undefined
25
28
  * @figma Supporting text
26
29
  */
@@ -45,7 +48,7 @@ export interface NeoTooltipProps extends Omit<TooltipProps, 'title' | 'variant'>
45
48
  * - Dark: grey[50] (#f9fafb), grey[800] (#1f2937)
46
49
  * - Brand: digitalBlue[800] (#131e7a), typography.tooltip (#ffffff)
47
50
  * - Shadow: neutralMedium (0px 8px 15px 0px rgba(31,41,55,0.1))
48
- * - Typography: fontSize.xs (12), fontWeight.medium (500), fontWeight.semiBold (600)
51
+ * - Typography: fontSize.xs (12), fontSize.caption (13), fontWeight.medium (500), fontWeight.semiBold (600)
49
52
  */
50
53
  export declare const NeoTooltip: {
51
54
  ({ variant, title, description, children, arrow, placement, ...props }: NeoTooltipProps): import("react/jsx-runtime").JSX.Element;
@@ -3,4 +3,4 @@
3
3
  *
4
4
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=4618-185228
5
5
  */
6
- export declare const NeoTopNav: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
+ export declare const NeoTopNav: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -3,4 +3,4 @@
3
3
  *
4
4
  * @figma https://www.figma.com/design/fQTkGSFbYyE7LiHuQJsENC?node-id=12408-1800
5
5
  */
6
- export declare const NeoTourModal: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
+ export declare const NeoTourModal: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,5 +1,5 @@
1
1
  import { type ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
2
- declare const StyledToggleButton: import("@emotion/styled").StyledComponent<import("@mui/material/ToggleButton").ToggleButtonOwnProps & Omit<import("@mui/material/ButtonBase").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "style" | "color" | "size" | "children" | "sx" | "className" | "tabIndex" | "onChange" | "onClick" | "classes" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "value" | "fullWidth" | "selected"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
2
+ declare const StyledToggleButton: import("@emotion/styled").StyledComponent<import("@mui/material").ToggleButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "style" | "color" | "size" | "children" | "sx" | "className" | "tabIndex" | "onChange" | "onClick" | "classes" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "value" | "fullWidth" | "selected"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
3
3
  export interface NeoTypologyControlProps extends Omit<ToggleButtonGroupProps, 'orientation'> {
4
4
  }
5
5
  /**
@@ -0,0 +1,12 @@
1
+ import { type BoxProps } from '@mui/material';
2
+ import type { FunctionComponent } from 'react';
3
+ export interface NeoVibratingDotProps extends BoxProps {
4
+ }
5
+ /**
6
+ * NeoVibratingDot - Animated status dot with a breathing pulse halo.
7
+ *
8
+ * Indicates a waiting/pending state (QUEUED / CREATED). Color is inherited from
9
+ * `currentColor`; set it via the `color`/`sx` prop or a parent. Sized to the
10
+ * lowercase-letter height regardless of parent fontSize.
11
+ */
12
+ export declare const NeoVibratingDot: FunctionComponent<NeoVibratingDotProps>;