@lets-events/react 6.0.0 → 7.0.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
@@ -407,10 +407,11 @@ type TextProps = ComponentProps<typeof TextStyle> & {
407
407
  declare function Text({ ...props }: TextProps): react_jsx_runtime.JSX.Element;
408
408
 
409
409
  declare const ButtonStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.ButtonProps & react.RefAttributes<HTMLButtonElement>>, {
410
- color?: "purple" | "brand" | "neutral" | undefined;
410
+ color?: "info" | "warning" | "purple" | "white" | "brand" | "error" | "success" | "neutral" | undefined;
411
411
  variant?: "text" | "contained" | "outlined" | undefined;
412
412
  typography?: "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | undefined;
413
413
  fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
414
+ outlinedBgColor?: "transparent" | "neutral" | undefined;
414
415
  radii?: "full" | undefined;
415
416
  }, {}, _stitches_react_types_css_util.CSS<{}, {
416
417
  colors: {
@@ -782,6 +783,7 @@ declare const ButtonStyled: _stitches_react_types_styled_component.StyledCompone
782
783
  transition: "transitions";
783
784
  zIndex: "zIndices";
784
785
  }, {}>>;
786
+
785
787
  interface ButtonProps extends ComponentProps<typeof ButtonStyled> {
786
788
  asChild?: boolean;
787
789
  }
@@ -1925,6 +1927,7 @@ declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComp
1925
1927
  color?: "default" | "error" | undefined;
1926
1928
  typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
1927
1929
  fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
1930
+ textAlign?: "left" | "right" | "center" | undefined;
1928
1931
  isValid?: boolean | "false" | "true" | undefined;
1929
1932
  }, {}, _stitches_react_types_css_util.CSS<{}, {
1930
1933
  colors: {
@@ -2299,6 +2302,7 @@ declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComp
2299
2302
  declare const TextFieldSlotStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<TextField$1.SlotProps & react.RefAttributes<HTMLDivElement>>, {
2300
2303
  typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
2301
2304
  fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
2305
+ textAlign?: "left" | "right" | "center" | undefined;
2302
2306
  }, {}, _stitches_react_types_css_util.CSS<{}, {
2303
2307
  colors: {
2304
2308
  brand50: string;
@@ -2670,12 +2674,14 @@ declare const TextFieldSlotStyled: _stitches_react_types_styled_component.Styled
2670
2674
  zIndex: "zIndices";
2671
2675
  }, {}>>;
2672
2676
  type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
2677
+ addon?: string;
2673
2678
  placeholder?: string;
2674
2679
  children?: React.ReactNode;
2675
2680
  isValid?: boolean;
2676
2681
  name?: string;
2677
2682
  typography?: string;
2678
2683
  fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
2684
+ textAlign?: 'left' | 'right' | 'center';
2679
2685
  };
2680
2686
  type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, 'color'> & {
2681
2687
  placeholder?: string;
@@ -2685,9 +2691,10 @@ type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, 'color'>
2685
2691
  color?: "error" | "success" | undefined;
2686
2692
  typography?: string;
2687
2693
  fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
2694
+ textAlign?: 'left' | 'right' | 'center';
2688
2695
  };
2689
- declare function TextField({ children, isValid, name, color, typography, fontWeight, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
2690
- declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
2696
+ declare function TextField({ children, isValid, name, color, typography, fontWeight, addon, textAlign, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
2697
+ declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, textAlign, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
2691
2698
 
2692
2699
  declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<RadioGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
2693
2700
  color?: "blue" | "error" | "success" | undefined;
@@ -5377,9 +5384,7 @@ type ModalProps = ComponentProps<typeof ModalStyled> & {
5377
5384
  };
5378
5385
  declare function Modal({ children, title, trigger, cancel, cancelText, action, actionText, onAction, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
5379
5386
 
5380
- declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
5381
- color?: "info" | "warning" | "error" | "success" | undefined;
5382
- }, {}, _stitches_react_types_css_util.CSS<{}, {
5387
+ declare const CalendarStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
5383
5388
  colors: {
5384
5389
  brand50: string;
5385
5390
  brand100: string;
@@ -5749,9 +5754,18 @@ declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.St
5749
5754
  transition: "transitions";
5750
5755
  zIndex: "zIndices";
5751
5756
  }, {}>>;
5752
- declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
5753
- color?: undefined;
5754
- }, {}, _stitches_react_types_css_util.CSS<{}, {
5757
+
5758
+ type CalendarProps = ComponentProps<typeof CalendarStyled> & {
5759
+ calendarLayout?: "label" | "dropdown" | "dropdown-months" | "dropdown-years";
5760
+ selected: Date | undefined;
5761
+ setSelected: react__default.Dispatch<react__default.SetStateAction<Date | undefined>>;
5762
+ action?: boolean;
5763
+ actionText?: string;
5764
+ onAction?: () => void;
5765
+ };
5766
+ declare function Calendar({ action, actionText, calendarLayout, selected, setSelected, onAction, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
5767
+
5768
+ declare const TimePickerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
5755
5769
  colors: {
5756
5770
  brand50: string;
5757
5771
  brand100: string;
@@ -6121,7 +6135,7 @@ declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.
6121
6135
  transition: "transitions";
6122
6136
  zIndex: "zIndices";
6123
6137
  }, {}>>;
6124
- declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.DescriptionProps & react.RefAttributes<HTMLParagraphElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
6138
+ declare const TimePickerTitleStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<Dialog.TitleProps & react__default.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
6125
6139
  colors: {
6126
6140
  brand50: string;
6127
6141
  brand100: string;
@@ -6491,7 +6505,7 @@ declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_compone
6491
6505
  transition: "transitions";
6492
6506
  zIndex: "zIndices";
6493
6507
  }, {}>>;
6494
- declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.TitleProps & react.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
6508
+ declare const TimePickerDialogStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<Dialog.ContentProps & react__default.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
6495
6509
  colors: {
6496
6510
  brand50: string;
6497
6511
  brand100: string;
@@ -6861,7 +6875,7 @@ declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.Sty
6861
6875
  transition: "transitions";
6862
6876
  zIndex: "zIndices";
6863
6877
  }, {}>>;
6864
- declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.StyledComponent<typeof Text, {}, {}, _stitches_react_types_css_util.CSS<{}, {
6878
+ declare const TimePickerFooterStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
6865
6879
  colors: {
6866
6880
  brand50: string;
6867
6881
  brand100: string;
@@ -7231,7 +7245,7 @@ declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.
7231
7245
  transition: "transitions";
7232
7246
  zIndex: "zIndices";
7233
7247
  }, {}>>;
7234
- declare const AlertDialogRowStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
7248
+ declare const TimerPickerContentStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
7235
7249
  colors: {
7236
7250
  brand50: string;
7237
7251
  brand100: string;
@@ -7601,7 +7615,15 @@ declare const AlertDialogRowStyled: _stitches_react_types_styled_component.Style
7601
7615
  transition: "transitions";
7602
7616
  zIndex: "zIndices";
7603
7617
  }, {}>>;
7604
- declare const AlertDialoghrStyled: _stitches_react_types_styled_component.StyledComponent<"hr", {}, {}, _stitches_react_types_css_util.CSS<{}, {
7618
+ type TimePickerProps = {
7619
+ selected: string | undefined;
7620
+ setSelected: react__default.Dispatch<react__default.SetStateAction<string | undefined>>;
7621
+ };
7622
+ declare function TimePicker({ selected, setSelected }: TimePickerProps): react_jsx_runtime.JSX.Element;
7623
+
7624
+ declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
7625
+ color?: "info" | "warning" | "error" | "success" | undefined;
7626
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
7605
7627
  colors: {
7606
7628
  brand50: string;
7607
7629
  brand100: string;
@@ -7971,28 +7993,8 @@ declare const AlertDialoghrStyled: _stitches_react_types_styled_component.Styled
7971
7993
  transition: "transitions";
7972
7994
  zIndex: "zIndices";
7973
7995
  }, {}>>;
7974
- type AlertProps = {
7975
- trigger: React.ReactNode;
7976
- color?: 'error' | 'warning' | 'success' | 'info';
7977
- simpleAlert?: {
7978
- description: string;
7979
- cancel: boolean;
7980
- };
7981
- completAlert?: {
7982
- title?: string;
7983
- subtitle?: string;
7984
- description: string;
7985
- cancel: boolean;
7986
- cancelText?: string;
7987
- actionText?: string;
7988
- onAction?: () => void;
7989
- };
7990
- };
7991
- declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
7992
-
7993
- declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.SwitchProps & react.RefAttributes<HTMLButtonElement>>, {
7994
- color?: "brand" | undefined;
7995
- size?: "sm" | "md" | "lg" | undefined;
7996
+ declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.ContentProps & react.RefAttributes<HTMLDivElement>>, {
7997
+ color?: undefined;
7996
7998
  }, {}, _stitches_react_types_css_util.CSS<{}, {
7997
7999
  colors: {
7998
8000
  brand50: string;
@@ -8363,13 +8365,7 @@ declare const SwitchStyled: _stitches_react_types_styled_component.StyledCompone
8363
8365
  transition: "transitions";
8364
8366
  zIndex: "zIndices";
8365
8367
  }, {}>>;
8366
- type SwitchProps = ComponentProps<typeof Switch$1> & {
8367
- color?: 'brand';
8368
- size?: 'sm' | 'md' | 'lg';
8369
- };
8370
- declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
8371
-
8372
- declare const StepStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
8368
+ declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.DescriptionProps & react.RefAttributes<HTMLParagraphElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
8373
8369
  colors: {
8374
8370
  brand50: string;
8375
8371
  brand100: string;
@@ -8739,35 +8735,2283 @@ declare const StepStyled: _stitches_react_types_styled_component.StyledComponent
8739
8735
  transition: "transitions";
8740
8736
  zIndex: "zIndices";
8741
8737
  }, {}>>;
8742
- type StepProps = ComponentProps<typeof StepStyled> & {
8743
- children: react__default.ReactNode;
8744
- defaultValue: number;
8745
- };
8746
- declare function Step({ children, defaultValue, ...props }: StepProps): react_jsx_runtime.JSX.Element;
8747
- declare function StepTrigger({ value, children, currentStep, ...props }: {
8748
- value: number;
8749
- children: react__default.ReactNode | string;
8750
- currentStep?: number;
8751
- onClick: () => void;
8752
- }): react_jsx_runtime.JSX.Element;
8753
- declare function StepContent({ value, children, ...props }: {
8754
- value: number;
8755
- children: react__default.ReactNode;
8756
- }): react_jsx_runtime.JSX.Element;
8757
- declare function StepList({ children, currentStep, ...props }: {
8758
- children: react__default.ReactNode;
8759
- currentStep: number;
8760
- }): react_jsx_runtime.JSX.Element;
8761
- declare function StepWrapper({ children, ...props }: {
8762
- children: react__default.ReactNode;
8763
- }): react_jsx_runtime.JSX.Element;
8764
-
8765
- declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & react.RefAttributes<HTMLDivElement>>, {
8766
- display?: "flex" | "inline-flex" | undefined;
8767
- align?: "end" | "stretch" | "center" | "start" | "baseline" | undefined;
8768
- justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | undefined;
8769
- direction?: "column" | "column-reverse" | "row" | "row-reverse" | undefined;
8770
- gap?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
8738
+ declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<AlertDialog.TitleProps & react.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
8739
+ colors: {
8740
+ brand50: string;
8741
+ brand100: string;
8742
+ brand200: string;
8743
+ brand300: string;
8744
+ brand400: string;
8745
+ brand500: string;
8746
+ brand600: string;
8747
+ brand700: string;
8748
+ brand800: string;
8749
+ brand900: string;
8750
+ brand950: string;
8751
+ blue50: string;
8752
+ blue100: string;
8753
+ blue200: string;
8754
+ blue300: string;
8755
+ blue400: string;
8756
+ blue500: string;
8757
+ blue600: string;
8758
+ blue700: string;
8759
+ blue800: string;
8760
+ blue900: string;
8761
+ blue950: string;
8762
+ red50: string;
8763
+ red100: string;
8764
+ red200: string;
8765
+ red300: string;
8766
+ red400: string;
8767
+ red500: string;
8768
+ red600: string;
8769
+ red700: string;
8770
+ red800: string;
8771
+ red900: string;
8772
+ red950: string;
8773
+ purple50: string;
8774
+ purple100: string;
8775
+ purple200: string;
8776
+ purple300: string;
8777
+ purple400: string;
8778
+ purple500: string;
8779
+ purple600: string;
8780
+ purple700: string;
8781
+ purple800: string;
8782
+ purple900: string;
8783
+ purple950: string;
8784
+ yellow50: string;
8785
+ yellow100: string;
8786
+ yellow200: string;
8787
+ yellow300: string;
8788
+ yellow400: string;
8789
+ yellow500: string;
8790
+ yellow600: string;
8791
+ yellow700: string;
8792
+ yellow800: string;
8793
+ yellow900: string;
8794
+ yellow950: string;
8795
+ dark50: string;
8796
+ dark100: string;
8797
+ dark200: string;
8798
+ dark300: string;
8799
+ dark400: string;
8800
+ dark500: string;
8801
+ dark600: string;
8802
+ dark700: string;
8803
+ dark800: string;
8804
+ dark900: string;
8805
+ dark950: string;
8806
+ neutral50: string;
8807
+ neutral100: string;
8808
+ neutral200: string;
8809
+ neutral300: string;
8810
+ neutral400: string;
8811
+ neutral500: string;
8812
+ neutral600: string;
8813
+ neutral700: string;
8814
+ neutral800: string;
8815
+ neutral900: string;
8816
+ neutral950: string;
8817
+ green50: string;
8818
+ green100: string;
8819
+ green200: string;
8820
+ green300: string;
8821
+ green400: string;
8822
+ green500: string;
8823
+ green600: string;
8824
+ green700: string;
8825
+ green800: string;
8826
+ green900: string;
8827
+ green950: string;
8828
+ grey50: string;
8829
+ grey100: string;
8830
+ grey200: string;
8831
+ grey300: string;
8832
+ grey400: string;
8833
+ grey500: string;
8834
+ grey600: string;
8835
+ grey700: string;
8836
+ grey800: string;
8837
+ grey900: string;
8838
+ grey950: string;
8839
+ error50: string;
8840
+ error100: string;
8841
+ error200: string;
8842
+ error300: string;
8843
+ error400: string;
8844
+ error500: string;
8845
+ error600: string;
8846
+ error700: string;
8847
+ error800: string;
8848
+ error900: string;
8849
+ error950: string;
8850
+ success50: string;
8851
+ success100: string;
8852
+ success200: string;
8853
+ success300: string;
8854
+ success400: string;
8855
+ success500: string;
8856
+ success600: string;
8857
+ success700: string;
8858
+ success800: string;
8859
+ success900: string;
8860
+ success950: string;
8861
+ warning50: string;
8862
+ warning100: string;
8863
+ warning200: string;
8864
+ warning300: string;
8865
+ warning400: string;
8866
+ warning500: string;
8867
+ warning600: string;
8868
+ warning700: string;
8869
+ warning800: string;
8870
+ warning900: string;
8871
+ warning950: string;
8872
+ info50: string;
8873
+ info100: string;
8874
+ info200: string;
8875
+ info300: string;
8876
+ info400: string;
8877
+ info500: string;
8878
+ info600: string;
8879
+ info700: string;
8880
+ info800: string;
8881
+ info900: string;
8882
+ info950: string;
8883
+ };
8884
+ fontSizes: {
8885
+ 2: string;
8886
+ 4: string;
8887
+ 6: string;
8888
+ 8: string;
8889
+ 10: string;
8890
+ 12: string;
8891
+ 13: string;
8892
+ 14: string;
8893
+ 16: string;
8894
+ 18: string;
8895
+ 20: string;
8896
+ 22: string;
8897
+ 24: string;
8898
+ 32: string;
8899
+ 36: string;
8900
+ 40: string;
8901
+ 48: string;
8902
+ 56: string;
8903
+ 64: string;
8904
+ 72: string;
8905
+ 80: string;
8906
+ xs: string;
8907
+ sm: string;
8908
+ md: string;
8909
+ lg: string;
8910
+ '2xl': string;
8911
+ '3xl': string;
8912
+ '4xl': string;
8913
+ full: string;
8914
+ };
8915
+ fonts: {
8916
+ default: string;
8917
+ };
8918
+ fontWeights: {
8919
+ regular: string;
8920
+ medium: string;
8921
+ semibold: string;
8922
+ bold: string;
8923
+ };
8924
+ lineHeights: {
8925
+ smaller: string;
8926
+ shorter: string;
8927
+ short: string;
8928
+ base: string;
8929
+ tall: string;
8930
+ };
8931
+ radii: {
8932
+ '3xs': string;
8933
+ '2xs': string;
8934
+ xs: string;
8935
+ sm: string;
8936
+ md: string;
8937
+ lg: string;
8938
+ xl: string;
8939
+ '2xl': string;
8940
+ '3xl': string;
8941
+ '4xl': string;
8942
+ '5xl': string;
8943
+ '6xl': string;
8944
+ '7xl': string;
8945
+ '8xl': string;
8946
+ '9xl': string;
8947
+ '10xl': string;
8948
+ '11xl': string;
8949
+ '12xl': string;
8950
+ '13xl': string;
8951
+ '14xl': string;
8952
+ full: string;
8953
+ };
8954
+ space: {
8955
+ 2: string;
8956
+ 4: string;
8957
+ 6: string;
8958
+ 8: string;
8959
+ 10: string;
8960
+ 12: string;
8961
+ 13: string;
8962
+ 14: string;
8963
+ 16: string;
8964
+ 18: string;
8965
+ 20: string;
8966
+ 22: string;
8967
+ 24: string;
8968
+ 32: string;
8969
+ 36: string;
8970
+ 40: string;
8971
+ 48: string;
8972
+ 56: string;
8973
+ 64: string;
8974
+ 72: string;
8975
+ 80: string;
8976
+ full: string;
8977
+ };
8978
+ }, {
8979
+ height: "space";
8980
+ width: "space";
8981
+ gap: "space";
8982
+ gridGap: "space";
8983
+ columnGap: "space";
8984
+ gridColumnGap: "space";
8985
+ rowGap: "space";
8986
+ gridRowGap: "space";
8987
+ inset: "space";
8988
+ insetBlock: "space";
8989
+ insetBlockEnd: "space";
8990
+ insetBlockStart: "space";
8991
+ insetInline: "space";
8992
+ insetInlineEnd: "space";
8993
+ insetInlineStart: "space";
8994
+ margin: "space";
8995
+ marginTop: "space";
8996
+ marginRight: "space";
8997
+ marginBottom: "space";
8998
+ marginLeft: "space";
8999
+ marginBlock: "space";
9000
+ marginBlockEnd: "space";
9001
+ marginBlockStart: "space";
9002
+ marginInline: "space";
9003
+ marginInlineEnd: "space";
9004
+ marginInlineStart: "space";
9005
+ padding: "space";
9006
+ paddingTop: "space";
9007
+ paddingRight: "space";
9008
+ paddingBottom: "space";
9009
+ paddingLeft: "space";
9010
+ paddingBlock: "space";
9011
+ paddingBlockEnd: "space";
9012
+ paddingBlockStart: "space";
9013
+ paddingInline: "space";
9014
+ paddingInlineEnd: "space";
9015
+ paddingInlineStart: "space";
9016
+ scrollMargin: "space";
9017
+ scrollMarginTop: "space";
9018
+ scrollMarginRight: "space";
9019
+ scrollMarginBottom: "space";
9020
+ scrollMarginLeft: "space";
9021
+ scrollMarginBlock: "space";
9022
+ scrollMarginBlockEnd: "space";
9023
+ scrollMarginBlockStart: "space";
9024
+ scrollMarginInline: "space";
9025
+ scrollMarginInlineEnd: "space";
9026
+ scrollMarginInlineStart: "space";
9027
+ scrollPadding: "space";
9028
+ scrollPaddingTop: "space";
9029
+ scrollPaddingRight: "space";
9030
+ scrollPaddingBottom: "space";
9031
+ scrollPaddingLeft: "space";
9032
+ scrollPaddingBlock: "space";
9033
+ scrollPaddingBlockEnd: "space";
9034
+ scrollPaddingBlockStart: "space";
9035
+ scrollPaddingInline: "space";
9036
+ scrollPaddingInlineEnd: "space";
9037
+ scrollPaddingInlineStart: "space";
9038
+ top: "space";
9039
+ right: "space";
9040
+ bottom: "space";
9041
+ left: "space";
9042
+ fontSize: "fontSizes";
9043
+ background: "colors";
9044
+ backgroundColor: "colors";
9045
+ backgroundImage: "colors";
9046
+ borderImage: "colors";
9047
+ border: "colors";
9048
+ borderBlock: "colors";
9049
+ borderBlockEnd: "colors";
9050
+ borderBlockStart: "colors";
9051
+ borderBottom: "colors";
9052
+ borderBottomColor: "colors";
9053
+ borderColor: "colors";
9054
+ borderInline: "colors";
9055
+ borderInlineEnd: "colors";
9056
+ borderInlineStart: "colors";
9057
+ borderLeft: "colors";
9058
+ borderLeftColor: "colors";
9059
+ borderRight: "colors";
9060
+ borderRightColor: "colors";
9061
+ borderTop: "colors";
9062
+ borderTopColor: "colors";
9063
+ caretColor: "colors";
9064
+ color: "colors";
9065
+ columnRuleColor: "colors";
9066
+ outline: "colors";
9067
+ outlineColor: "colors";
9068
+ fill: "colors";
9069
+ stroke: "colors";
9070
+ textDecorationColor: "colors";
9071
+ fontFamily: "fonts";
9072
+ fontWeight: "fontWeights";
9073
+ lineHeight: "lineHeights";
9074
+ letterSpacing: "letterSpacings";
9075
+ blockSize: "sizes";
9076
+ minBlockSize: "sizes";
9077
+ maxBlockSize: "sizes";
9078
+ inlineSize: "sizes";
9079
+ minInlineSize: "sizes";
9080
+ maxInlineSize: "sizes";
9081
+ minWidth: "sizes";
9082
+ maxWidth: "sizes";
9083
+ minHeight: "sizes";
9084
+ maxHeight: "sizes";
9085
+ flexBasis: "sizes";
9086
+ gridTemplateColumns: "sizes";
9087
+ gridTemplateRows: "sizes";
9088
+ borderWidth: "borderWidths";
9089
+ borderTopWidth: "borderWidths";
9090
+ borderLeftWidth: "borderWidths";
9091
+ borderRightWidth: "borderWidths";
9092
+ borderBottomWidth: "borderWidths";
9093
+ borderStyle: "borderStyles";
9094
+ borderTopStyle: "borderStyles";
9095
+ borderLeftStyle: "borderStyles";
9096
+ borderRightStyle: "borderStyles";
9097
+ borderBottomStyle: "borderStyles";
9098
+ borderRadius: "radii";
9099
+ borderTopLeftRadius: "radii";
9100
+ borderTopRightRadius: "radii";
9101
+ borderBottomRightRadius: "radii";
9102
+ borderBottomLeftRadius: "radii";
9103
+ boxShadow: "shadows";
9104
+ textShadow: "shadows";
9105
+ transition: "transitions";
9106
+ zIndex: "zIndices";
9107
+ }, {}>>;
9108
+ declare const AlertDialogSubtitleStyled: _stitches_react_types_styled_component.StyledComponent<typeof Text, {}, {}, _stitches_react_types_css_util.CSS<{}, {
9109
+ colors: {
9110
+ brand50: string;
9111
+ brand100: string;
9112
+ brand200: string;
9113
+ brand300: string;
9114
+ brand400: string;
9115
+ brand500: string;
9116
+ brand600: string;
9117
+ brand700: string;
9118
+ brand800: string;
9119
+ brand900: string;
9120
+ brand950: string;
9121
+ blue50: string;
9122
+ blue100: string;
9123
+ blue200: string;
9124
+ blue300: string;
9125
+ blue400: string;
9126
+ blue500: string;
9127
+ blue600: string;
9128
+ blue700: string;
9129
+ blue800: string;
9130
+ blue900: string;
9131
+ blue950: string;
9132
+ red50: string;
9133
+ red100: string;
9134
+ red200: string;
9135
+ red300: string;
9136
+ red400: string;
9137
+ red500: string;
9138
+ red600: string;
9139
+ red700: string;
9140
+ red800: string;
9141
+ red900: string;
9142
+ red950: string;
9143
+ purple50: string;
9144
+ purple100: string;
9145
+ purple200: string;
9146
+ purple300: string;
9147
+ purple400: string;
9148
+ purple500: string;
9149
+ purple600: string;
9150
+ purple700: string;
9151
+ purple800: string;
9152
+ purple900: string;
9153
+ purple950: string;
9154
+ yellow50: string;
9155
+ yellow100: string;
9156
+ yellow200: string;
9157
+ yellow300: string;
9158
+ yellow400: string;
9159
+ yellow500: string;
9160
+ yellow600: string;
9161
+ yellow700: string;
9162
+ yellow800: string;
9163
+ yellow900: string;
9164
+ yellow950: string;
9165
+ dark50: string;
9166
+ dark100: string;
9167
+ dark200: string;
9168
+ dark300: string;
9169
+ dark400: string;
9170
+ dark500: string;
9171
+ dark600: string;
9172
+ dark700: string;
9173
+ dark800: string;
9174
+ dark900: string;
9175
+ dark950: string;
9176
+ neutral50: string;
9177
+ neutral100: string;
9178
+ neutral200: string;
9179
+ neutral300: string;
9180
+ neutral400: string;
9181
+ neutral500: string;
9182
+ neutral600: string;
9183
+ neutral700: string;
9184
+ neutral800: string;
9185
+ neutral900: string;
9186
+ neutral950: string;
9187
+ green50: string;
9188
+ green100: string;
9189
+ green200: string;
9190
+ green300: string;
9191
+ green400: string;
9192
+ green500: string;
9193
+ green600: string;
9194
+ green700: string;
9195
+ green800: string;
9196
+ green900: string;
9197
+ green950: string;
9198
+ grey50: string;
9199
+ grey100: string;
9200
+ grey200: string;
9201
+ grey300: string;
9202
+ grey400: string;
9203
+ grey500: string;
9204
+ grey600: string;
9205
+ grey700: string;
9206
+ grey800: string;
9207
+ grey900: string;
9208
+ grey950: string;
9209
+ error50: string;
9210
+ error100: string;
9211
+ error200: string;
9212
+ error300: string;
9213
+ error400: string;
9214
+ error500: string;
9215
+ error600: string;
9216
+ error700: string;
9217
+ error800: string;
9218
+ error900: string;
9219
+ error950: string;
9220
+ success50: string;
9221
+ success100: string;
9222
+ success200: string;
9223
+ success300: string;
9224
+ success400: string;
9225
+ success500: string;
9226
+ success600: string;
9227
+ success700: string;
9228
+ success800: string;
9229
+ success900: string;
9230
+ success950: string;
9231
+ warning50: string;
9232
+ warning100: string;
9233
+ warning200: string;
9234
+ warning300: string;
9235
+ warning400: string;
9236
+ warning500: string;
9237
+ warning600: string;
9238
+ warning700: string;
9239
+ warning800: string;
9240
+ warning900: string;
9241
+ warning950: string;
9242
+ info50: string;
9243
+ info100: string;
9244
+ info200: string;
9245
+ info300: string;
9246
+ info400: string;
9247
+ info500: string;
9248
+ info600: string;
9249
+ info700: string;
9250
+ info800: string;
9251
+ info900: string;
9252
+ info950: string;
9253
+ };
9254
+ fontSizes: {
9255
+ 2: string;
9256
+ 4: string;
9257
+ 6: string;
9258
+ 8: string;
9259
+ 10: string;
9260
+ 12: string;
9261
+ 13: string;
9262
+ 14: string;
9263
+ 16: string;
9264
+ 18: string;
9265
+ 20: string;
9266
+ 22: string;
9267
+ 24: string;
9268
+ 32: string;
9269
+ 36: string;
9270
+ 40: string;
9271
+ 48: string;
9272
+ 56: string;
9273
+ 64: string;
9274
+ 72: string;
9275
+ 80: string;
9276
+ xs: string;
9277
+ sm: string;
9278
+ md: string;
9279
+ lg: string;
9280
+ '2xl': string;
9281
+ '3xl': string;
9282
+ '4xl': string;
9283
+ full: string;
9284
+ };
9285
+ fonts: {
9286
+ default: string;
9287
+ };
9288
+ fontWeights: {
9289
+ regular: string;
9290
+ medium: string;
9291
+ semibold: string;
9292
+ bold: string;
9293
+ };
9294
+ lineHeights: {
9295
+ smaller: string;
9296
+ shorter: string;
9297
+ short: string;
9298
+ base: string;
9299
+ tall: string;
9300
+ };
9301
+ radii: {
9302
+ '3xs': string;
9303
+ '2xs': string;
9304
+ xs: string;
9305
+ sm: string;
9306
+ md: string;
9307
+ lg: string;
9308
+ xl: string;
9309
+ '2xl': string;
9310
+ '3xl': string;
9311
+ '4xl': string;
9312
+ '5xl': string;
9313
+ '6xl': string;
9314
+ '7xl': string;
9315
+ '8xl': string;
9316
+ '9xl': string;
9317
+ '10xl': string;
9318
+ '11xl': string;
9319
+ '12xl': string;
9320
+ '13xl': string;
9321
+ '14xl': string;
9322
+ full: string;
9323
+ };
9324
+ space: {
9325
+ 2: string;
9326
+ 4: string;
9327
+ 6: string;
9328
+ 8: string;
9329
+ 10: string;
9330
+ 12: string;
9331
+ 13: string;
9332
+ 14: string;
9333
+ 16: string;
9334
+ 18: string;
9335
+ 20: string;
9336
+ 22: string;
9337
+ 24: string;
9338
+ 32: string;
9339
+ 36: string;
9340
+ 40: string;
9341
+ 48: string;
9342
+ 56: string;
9343
+ 64: string;
9344
+ 72: string;
9345
+ 80: string;
9346
+ full: string;
9347
+ };
9348
+ }, {
9349
+ height: "space";
9350
+ width: "space";
9351
+ gap: "space";
9352
+ gridGap: "space";
9353
+ columnGap: "space";
9354
+ gridColumnGap: "space";
9355
+ rowGap: "space";
9356
+ gridRowGap: "space";
9357
+ inset: "space";
9358
+ insetBlock: "space";
9359
+ insetBlockEnd: "space";
9360
+ insetBlockStart: "space";
9361
+ insetInline: "space";
9362
+ insetInlineEnd: "space";
9363
+ insetInlineStart: "space";
9364
+ margin: "space";
9365
+ marginTop: "space";
9366
+ marginRight: "space";
9367
+ marginBottom: "space";
9368
+ marginLeft: "space";
9369
+ marginBlock: "space";
9370
+ marginBlockEnd: "space";
9371
+ marginBlockStart: "space";
9372
+ marginInline: "space";
9373
+ marginInlineEnd: "space";
9374
+ marginInlineStart: "space";
9375
+ padding: "space";
9376
+ paddingTop: "space";
9377
+ paddingRight: "space";
9378
+ paddingBottom: "space";
9379
+ paddingLeft: "space";
9380
+ paddingBlock: "space";
9381
+ paddingBlockEnd: "space";
9382
+ paddingBlockStart: "space";
9383
+ paddingInline: "space";
9384
+ paddingInlineEnd: "space";
9385
+ paddingInlineStart: "space";
9386
+ scrollMargin: "space";
9387
+ scrollMarginTop: "space";
9388
+ scrollMarginRight: "space";
9389
+ scrollMarginBottom: "space";
9390
+ scrollMarginLeft: "space";
9391
+ scrollMarginBlock: "space";
9392
+ scrollMarginBlockEnd: "space";
9393
+ scrollMarginBlockStart: "space";
9394
+ scrollMarginInline: "space";
9395
+ scrollMarginInlineEnd: "space";
9396
+ scrollMarginInlineStart: "space";
9397
+ scrollPadding: "space";
9398
+ scrollPaddingTop: "space";
9399
+ scrollPaddingRight: "space";
9400
+ scrollPaddingBottom: "space";
9401
+ scrollPaddingLeft: "space";
9402
+ scrollPaddingBlock: "space";
9403
+ scrollPaddingBlockEnd: "space";
9404
+ scrollPaddingBlockStart: "space";
9405
+ scrollPaddingInline: "space";
9406
+ scrollPaddingInlineEnd: "space";
9407
+ scrollPaddingInlineStart: "space";
9408
+ top: "space";
9409
+ right: "space";
9410
+ bottom: "space";
9411
+ left: "space";
9412
+ fontSize: "fontSizes";
9413
+ background: "colors";
9414
+ backgroundColor: "colors";
9415
+ backgroundImage: "colors";
9416
+ borderImage: "colors";
9417
+ border: "colors";
9418
+ borderBlock: "colors";
9419
+ borderBlockEnd: "colors";
9420
+ borderBlockStart: "colors";
9421
+ borderBottom: "colors";
9422
+ borderBottomColor: "colors";
9423
+ borderColor: "colors";
9424
+ borderInline: "colors";
9425
+ borderInlineEnd: "colors";
9426
+ borderInlineStart: "colors";
9427
+ borderLeft: "colors";
9428
+ borderLeftColor: "colors";
9429
+ borderRight: "colors";
9430
+ borderRightColor: "colors";
9431
+ borderTop: "colors";
9432
+ borderTopColor: "colors";
9433
+ caretColor: "colors";
9434
+ color: "colors";
9435
+ columnRuleColor: "colors";
9436
+ outline: "colors";
9437
+ outlineColor: "colors";
9438
+ fill: "colors";
9439
+ stroke: "colors";
9440
+ textDecorationColor: "colors";
9441
+ fontFamily: "fonts";
9442
+ fontWeight: "fontWeights";
9443
+ lineHeight: "lineHeights";
9444
+ letterSpacing: "letterSpacings";
9445
+ blockSize: "sizes";
9446
+ minBlockSize: "sizes";
9447
+ maxBlockSize: "sizes";
9448
+ inlineSize: "sizes";
9449
+ minInlineSize: "sizes";
9450
+ maxInlineSize: "sizes";
9451
+ minWidth: "sizes";
9452
+ maxWidth: "sizes";
9453
+ minHeight: "sizes";
9454
+ maxHeight: "sizes";
9455
+ flexBasis: "sizes";
9456
+ gridTemplateColumns: "sizes";
9457
+ gridTemplateRows: "sizes";
9458
+ borderWidth: "borderWidths";
9459
+ borderTopWidth: "borderWidths";
9460
+ borderLeftWidth: "borderWidths";
9461
+ borderRightWidth: "borderWidths";
9462
+ borderBottomWidth: "borderWidths";
9463
+ borderStyle: "borderStyles";
9464
+ borderTopStyle: "borderStyles";
9465
+ borderLeftStyle: "borderStyles";
9466
+ borderRightStyle: "borderStyles";
9467
+ borderBottomStyle: "borderStyles";
9468
+ borderRadius: "radii";
9469
+ borderTopLeftRadius: "radii";
9470
+ borderTopRightRadius: "radii";
9471
+ borderBottomRightRadius: "radii";
9472
+ borderBottomLeftRadius: "radii";
9473
+ boxShadow: "shadows";
9474
+ textShadow: "shadows";
9475
+ transition: "transitions";
9476
+ zIndex: "zIndices";
9477
+ }, {}>>;
9478
+ declare const AlertDialogRowStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
9479
+ colors: {
9480
+ brand50: string;
9481
+ brand100: string;
9482
+ brand200: string;
9483
+ brand300: string;
9484
+ brand400: string;
9485
+ brand500: string;
9486
+ brand600: string;
9487
+ brand700: string;
9488
+ brand800: string;
9489
+ brand900: string;
9490
+ brand950: string;
9491
+ blue50: string;
9492
+ blue100: string;
9493
+ blue200: string;
9494
+ blue300: string;
9495
+ blue400: string;
9496
+ blue500: string;
9497
+ blue600: string;
9498
+ blue700: string;
9499
+ blue800: string;
9500
+ blue900: string;
9501
+ blue950: string;
9502
+ red50: string;
9503
+ red100: string;
9504
+ red200: string;
9505
+ red300: string;
9506
+ red400: string;
9507
+ red500: string;
9508
+ red600: string;
9509
+ red700: string;
9510
+ red800: string;
9511
+ red900: string;
9512
+ red950: string;
9513
+ purple50: string;
9514
+ purple100: string;
9515
+ purple200: string;
9516
+ purple300: string;
9517
+ purple400: string;
9518
+ purple500: string;
9519
+ purple600: string;
9520
+ purple700: string;
9521
+ purple800: string;
9522
+ purple900: string;
9523
+ purple950: string;
9524
+ yellow50: string;
9525
+ yellow100: string;
9526
+ yellow200: string;
9527
+ yellow300: string;
9528
+ yellow400: string;
9529
+ yellow500: string;
9530
+ yellow600: string;
9531
+ yellow700: string;
9532
+ yellow800: string;
9533
+ yellow900: string;
9534
+ yellow950: string;
9535
+ dark50: string;
9536
+ dark100: string;
9537
+ dark200: string;
9538
+ dark300: string;
9539
+ dark400: string;
9540
+ dark500: string;
9541
+ dark600: string;
9542
+ dark700: string;
9543
+ dark800: string;
9544
+ dark900: string;
9545
+ dark950: string;
9546
+ neutral50: string;
9547
+ neutral100: string;
9548
+ neutral200: string;
9549
+ neutral300: string;
9550
+ neutral400: string;
9551
+ neutral500: string;
9552
+ neutral600: string;
9553
+ neutral700: string;
9554
+ neutral800: string;
9555
+ neutral900: string;
9556
+ neutral950: string;
9557
+ green50: string;
9558
+ green100: string;
9559
+ green200: string;
9560
+ green300: string;
9561
+ green400: string;
9562
+ green500: string;
9563
+ green600: string;
9564
+ green700: string;
9565
+ green800: string;
9566
+ green900: string;
9567
+ green950: string;
9568
+ grey50: string;
9569
+ grey100: string;
9570
+ grey200: string;
9571
+ grey300: string;
9572
+ grey400: string;
9573
+ grey500: string;
9574
+ grey600: string;
9575
+ grey700: string;
9576
+ grey800: string;
9577
+ grey900: string;
9578
+ grey950: string;
9579
+ error50: string;
9580
+ error100: string;
9581
+ error200: string;
9582
+ error300: string;
9583
+ error400: string;
9584
+ error500: string;
9585
+ error600: string;
9586
+ error700: string;
9587
+ error800: string;
9588
+ error900: string;
9589
+ error950: string;
9590
+ success50: string;
9591
+ success100: string;
9592
+ success200: string;
9593
+ success300: string;
9594
+ success400: string;
9595
+ success500: string;
9596
+ success600: string;
9597
+ success700: string;
9598
+ success800: string;
9599
+ success900: string;
9600
+ success950: string;
9601
+ warning50: string;
9602
+ warning100: string;
9603
+ warning200: string;
9604
+ warning300: string;
9605
+ warning400: string;
9606
+ warning500: string;
9607
+ warning600: string;
9608
+ warning700: string;
9609
+ warning800: string;
9610
+ warning900: string;
9611
+ warning950: string;
9612
+ info50: string;
9613
+ info100: string;
9614
+ info200: string;
9615
+ info300: string;
9616
+ info400: string;
9617
+ info500: string;
9618
+ info600: string;
9619
+ info700: string;
9620
+ info800: string;
9621
+ info900: string;
9622
+ info950: string;
9623
+ };
9624
+ fontSizes: {
9625
+ 2: string;
9626
+ 4: string;
9627
+ 6: string;
9628
+ 8: string;
9629
+ 10: string;
9630
+ 12: string;
9631
+ 13: string;
9632
+ 14: string;
9633
+ 16: string;
9634
+ 18: string;
9635
+ 20: string;
9636
+ 22: string;
9637
+ 24: string;
9638
+ 32: string;
9639
+ 36: string;
9640
+ 40: string;
9641
+ 48: string;
9642
+ 56: string;
9643
+ 64: string;
9644
+ 72: string;
9645
+ 80: string;
9646
+ xs: string;
9647
+ sm: string;
9648
+ md: string;
9649
+ lg: string;
9650
+ '2xl': string;
9651
+ '3xl': string;
9652
+ '4xl': string;
9653
+ full: string;
9654
+ };
9655
+ fonts: {
9656
+ default: string;
9657
+ };
9658
+ fontWeights: {
9659
+ regular: string;
9660
+ medium: string;
9661
+ semibold: string;
9662
+ bold: string;
9663
+ };
9664
+ lineHeights: {
9665
+ smaller: string;
9666
+ shorter: string;
9667
+ short: string;
9668
+ base: string;
9669
+ tall: string;
9670
+ };
9671
+ radii: {
9672
+ '3xs': string;
9673
+ '2xs': string;
9674
+ xs: string;
9675
+ sm: string;
9676
+ md: string;
9677
+ lg: string;
9678
+ xl: string;
9679
+ '2xl': string;
9680
+ '3xl': string;
9681
+ '4xl': string;
9682
+ '5xl': string;
9683
+ '6xl': string;
9684
+ '7xl': string;
9685
+ '8xl': string;
9686
+ '9xl': string;
9687
+ '10xl': string;
9688
+ '11xl': string;
9689
+ '12xl': string;
9690
+ '13xl': string;
9691
+ '14xl': string;
9692
+ full: string;
9693
+ };
9694
+ space: {
9695
+ 2: string;
9696
+ 4: string;
9697
+ 6: string;
9698
+ 8: string;
9699
+ 10: string;
9700
+ 12: string;
9701
+ 13: string;
9702
+ 14: string;
9703
+ 16: string;
9704
+ 18: string;
9705
+ 20: string;
9706
+ 22: string;
9707
+ 24: string;
9708
+ 32: string;
9709
+ 36: string;
9710
+ 40: string;
9711
+ 48: string;
9712
+ 56: string;
9713
+ 64: string;
9714
+ 72: string;
9715
+ 80: string;
9716
+ full: string;
9717
+ };
9718
+ }, {
9719
+ height: "space";
9720
+ width: "space";
9721
+ gap: "space";
9722
+ gridGap: "space";
9723
+ columnGap: "space";
9724
+ gridColumnGap: "space";
9725
+ rowGap: "space";
9726
+ gridRowGap: "space";
9727
+ inset: "space";
9728
+ insetBlock: "space";
9729
+ insetBlockEnd: "space";
9730
+ insetBlockStart: "space";
9731
+ insetInline: "space";
9732
+ insetInlineEnd: "space";
9733
+ insetInlineStart: "space";
9734
+ margin: "space";
9735
+ marginTop: "space";
9736
+ marginRight: "space";
9737
+ marginBottom: "space";
9738
+ marginLeft: "space";
9739
+ marginBlock: "space";
9740
+ marginBlockEnd: "space";
9741
+ marginBlockStart: "space";
9742
+ marginInline: "space";
9743
+ marginInlineEnd: "space";
9744
+ marginInlineStart: "space";
9745
+ padding: "space";
9746
+ paddingTop: "space";
9747
+ paddingRight: "space";
9748
+ paddingBottom: "space";
9749
+ paddingLeft: "space";
9750
+ paddingBlock: "space";
9751
+ paddingBlockEnd: "space";
9752
+ paddingBlockStart: "space";
9753
+ paddingInline: "space";
9754
+ paddingInlineEnd: "space";
9755
+ paddingInlineStart: "space";
9756
+ scrollMargin: "space";
9757
+ scrollMarginTop: "space";
9758
+ scrollMarginRight: "space";
9759
+ scrollMarginBottom: "space";
9760
+ scrollMarginLeft: "space";
9761
+ scrollMarginBlock: "space";
9762
+ scrollMarginBlockEnd: "space";
9763
+ scrollMarginBlockStart: "space";
9764
+ scrollMarginInline: "space";
9765
+ scrollMarginInlineEnd: "space";
9766
+ scrollMarginInlineStart: "space";
9767
+ scrollPadding: "space";
9768
+ scrollPaddingTop: "space";
9769
+ scrollPaddingRight: "space";
9770
+ scrollPaddingBottom: "space";
9771
+ scrollPaddingLeft: "space";
9772
+ scrollPaddingBlock: "space";
9773
+ scrollPaddingBlockEnd: "space";
9774
+ scrollPaddingBlockStart: "space";
9775
+ scrollPaddingInline: "space";
9776
+ scrollPaddingInlineEnd: "space";
9777
+ scrollPaddingInlineStart: "space";
9778
+ top: "space";
9779
+ right: "space";
9780
+ bottom: "space";
9781
+ left: "space";
9782
+ fontSize: "fontSizes";
9783
+ background: "colors";
9784
+ backgroundColor: "colors";
9785
+ backgroundImage: "colors";
9786
+ borderImage: "colors";
9787
+ border: "colors";
9788
+ borderBlock: "colors";
9789
+ borderBlockEnd: "colors";
9790
+ borderBlockStart: "colors";
9791
+ borderBottom: "colors";
9792
+ borderBottomColor: "colors";
9793
+ borderColor: "colors";
9794
+ borderInline: "colors";
9795
+ borderInlineEnd: "colors";
9796
+ borderInlineStart: "colors";
9797
+ borderLeft: "colors";
9798
+ borderLeftColor: "colors";
9799
+ borderRight: "colors";
9800
+ borderRightColor: "colors";
9801
+ borderTop: "colors";
9802
+ borderTopColor: "colors";
9803
+ caretColor: "colors";
9804
+ color: "colors";
9805
+ columnRuleColor: "colors";
9806
+ outline: "colors";
9807
+ outlineColor: "colors";
9808
+ fill: "colors";
9809
+ stroke: "colors";
9810
+ textDecorationColor: "colors";
9811
+ fontFamily: "fonts";
9812
+ fontWeight: "fontWeights";
9813
+ lineHeight: "lineHeights";
9814
+ letterSpacing: "letterSpacings";
9815
+ blockSize: "sizes";
9816
+ minBlockSize: "sizes";
9817
+ maxBlockSize: "sizes";
9818
+ inlineSize: "sizes";
9819
+ minInlineSize: "sizes";
9820
+ maxInlineSize: "sizes";
9821
+ minWidth: "sizes";
9822
+ maxWidth: "sizes";
9823
+ minHeight: "sizes";
9824
+ maxHeight: "sizes";
9825
+ flexBasis: "sizes";
9826
+ gridTemplateColumns: "sizes";
9827
+ gridTemplateRows: "sizes";
9828
+ borderWidth: "borderWidths";
9829
+ borderTopWidth: "borderWidths";
9830
+ borderLeftWidth: "borderWidths";
9831
+ borderRightWidth: "borderWidths";
9832
+ borderBottomWidth: "borderWidths";
9833
+ borderStyle: "borderStyles";
9834
+ borderTopStyle: "borderStyles";
9835
+ borderLeftStyle: "borderStyles";
9836
+ borderRightStyle: "borderStyles";
9837
+ borderBottomStyle: "borderStyles";
9838
+ borderRadius: "radii";
9839
+ borderTopLeftRadius: "radii";
9840
+ borderTopRightRadius: "radii";
9841
+ borderBottomRightRadius: "radii";
9842
+ borderBottomLeftRadius: "radii";
9843
+ boxShadow: "shadows";
9844
+ textShadow: "shadows";
9845
+ transition: "transitions";
9846
+ zIndex: "zIndices";
9847
+ }, {}>>;
9848
+ declare const AlertDialoghrStyled: _stitches_react_types_styled_component.StyledComponent<"hr", {}, {}, _stitches_react_types_css_util.CSS<{}, {
9849
+ colors: {
9850
+ brand50: string;
9851
+ brand100: string;
9852
+ brand200: string;
9853
+ brand300: string;
9854
+ brand400: string;
9855
+ brand500: string;
9856
+ brand600: string;
9857
+ brand700: string;
9858
+ brand800: string;
9859
+ brand900: string;
9860
+ brand950: string;
9861
+ blue50: string;
9862
+ blue100: string;
9863
+ blue200: string;
9864
+ blue300: string;
9865
+ blue400: string;
9866
+ blue500: string;
9867
+ blue600: string;
9868
+ blue700: string;
9869
+ blue800: string;
9870
+ blue900: string;
9871
+ blue950: string;
9872
+ red50: string;
9873
+ red100: string;
9874
+ red200: string;
9875
+ red300: string;
9876
+ red400: string;
9877
+ red500: string;
9878
+ red600: string;
9879
+ red700: string;
9880
+ red800: string;
9881
+ red900: string;
9882
+ red950: string;
9883
+ purple50: string;
9884
+ purple100: string;
9885
+ purple200: string;
9886
+ purple300: string;
9887
+ purple400: string;
9888
+ purple500: string;
9889
+ purple600: string;
9890
+ purple700: string;
9891
+ purple800: string;
9892
+ purple900: string;
9893
+ purple950: string;
9894
+ yellow50: string;
9895
+ yellow100: string;
9896
+ yellow200: string;
9897
+ yellow300: string;
9898
+ yellow400: string;
9899
+ yellow500: string;
9900
+ yellow600: string;
9901
+ yellow700: string;
9902
+ yellow800: string;
9903
+ yellow900: string;
9904
+ yellow950: string;
9905
+ dark50: string;
9906
+ dark100: string;
9907
+ dark200: string;
9908
+ dark300: string;
9909
+ dark400: string;
9910
+ dark500: string;
9911
+ dark600: string;
9912
+ dark700: string;
9913
+ dark800: string;
9914
+ dark900: string;
9915
+ dark950: string;
9916
+ neutral50: string;
9917
+ neutral100: string;
9918
+ neutral200: string;
9919
+ neutral300: string;
9920
+ neutral400: string;
9921
+ neutral500: string;
9922
+ neutral600: string;
9923
+ neutral700: string;
9924
+ neutral800: string;
9925
+ neutral900: string;
9926
+ neutral950: string;
9927
+ green50: string;
9928
+ green100: string;
9929
+ green200: string;
9930
+ green300: string;
9931
+ green400: string;
9932
+ green500: string;
9933
+ green600: string;
9934
+ green700: string;
9935
+ green800: string;
9936
+ green900: string;
9937
+ green950: string;
9938
+ grey50: string;
9939
+ grey100: string;
9940
+ grey200: string;
9941
+ grey300: string;
9942
+ grey400: string;
9943
+ grey500: string;
9944
+ grey600: string;
9945
+ grey700: string;
9946
+ grey800: string;
9947
+ grey900: string;
9948
+ grey950: string;
9949
+ error50: string;
9950
+ error100: string;
9951
+ error200: string;
9952
+ error300: string;
9953
+ error400: string;
9954
+ error500: string;
9955
+ error600: string;
9956
+ error700: string;
9957
+ error800: string;
9958
+ error900: string;
9959
+ error950: string;
9960
+ success50: string;
9961
+ success100: string;
9962
+ success200: string;
9963
+ success300: string;
9964
+ success400: string;
9965
+ success500: string;
9966
+ success600: string;
9967
+ success700: string;
9968
+ success800: string;
9969
+ success900: string;
9970
+ success950: string;
9971
+ warning50: string;
9972
+ warning100: string;
9973
+ warning200: string;
9974
+ warning300: string;
9975
+ warning400: string;
9976
+ warning500: string;
9977
+ warning600: string;
9978
+ warning700: string;
9979
+ warning800: string;
9980
+ warning900: string;
9981
+ warning950: string;
9982
+ info50: string;
9983
+ info100: string;
9984
+ info200: string;
9985
+ info300: string;
9986
+ info400: string;
9987
+ info500: string;
9988
+ info600: string;
9989
+ info700: string;
9990
+ info800: string;
9991
+ info900: string;
9992
+ info950: string;
9993
+ };
9994
+ fontSizes: {
9995
+ 2: string;
9996
+ 4: string;
9997
+ 6: string;
9998
+ 8: string;
9999
+ 10: string;
10000
+ 12: string;
10001
+ 13: string;
10002
+ 14: string;
10003
+ 16: string;
10004
+ 18: string;
10005
+ 20: string;
10006
+ 22: string;
10007
+ 24: string;
10008
+ 32: string;
10009
+ 36: string;
10010
+ 40: string;
10011
+ 48: string;
10012
+ 56: string;
10013
+ 64: string;
10014
+ 72: string;
10015
+ 80: string;
10016
+ xs: string;
10017
+ sm: string;
10018
+ md: string;
10019
+ lg: string;
10020
+ '2xl': string;
10021
+ '3xl': string;
10022
+ '4xl': string;
10023
+ full: string;
10024
+ };
10025
+ fonts: {
10026
+ default: string;
10027
+ };
10028
+ fontWeights: {
10029
+ regular: string;
10030
+ medium: string;
10031
+ semibold: string;
10032
+ bold: string;
10033
+ };
10034
+ lineHeights: {
10035
+ smaller: string;
10036
+ shorter: string;
10037
+ short: string;
10038
+ base: string;
10039
+ tall: string;
10040
+ };
10041
+ radii: {
10042
+ '3xs': string;
10043
+ '2xs': string;
10044
+ xs: string;
10045
+ sm: string;
10046
+ md: string;
10047
+ lg: string;
10048
+ xl: string;
10049
+ '2xl': string;
10050
+ '3xl': string;
10051
+ '4xl': string;
10052
+ '5xl': string;
10053
+ '6xl': string;
10054
+ '7xl': string;
10055
+ '8xl': string;
10056
+ '9xl': string;
10057
+ '10xl': string;
10058
+ '11xl': string;
10059
+ '12xl': string;
10060
+ '13xl': string;
10061
+ '14xl': string;
10062
+ full: string;
10063
+ };
10064
+ space: {
10065
+ 2: string;
10066
+ 4: string;
10067
+ 6: string;
10068
+ 8: string;
10069
+ 10: string;
10070
+ 12: string;
10071
+ 13: string;
10072
+ 14: string;
10073
+ 16: string;
10074
+ 18: string;
10075
+ 20: string;
10076
+ 22: string;
10077
+ 24: string;
10078
+ 32: string;
10079
+ 36: string;
10080
+ 40: string;
10081
+ 48: string;
10082
+ 56: string;
10083
+ 64: string;
10084
+ 72: string;
10085
+ 80: string;
10086
+ full: string;
10087
+ };
10088
+ }, {
10089
+ height: "space";
10090
+ width: "space";
10091
+ gap: "space";
10092
+ gridGap: "space";
10093
+ columnGap: "space";
10094
+ gridColumnGap: "space";
10095
+ rowGap: "space";
10096
+ gridRowGap: "space";
10097
+ inset: "space";
10098
+ insetBlock: "space";
10099
+ insetBlockEnd: "space";
10100
+ insetBlockStart: "space";
10101
+ insetInline: "space";
10102
+ insetInlineEnd: "space";
10103
+ insetInlineStart: "space";
10104
+ margin: "space";
10105
+ marginTop: "space";
10106
+ marginRight: "space";
10107
+ marginBottom: "space";
10108
+ marginLeft: "space";
10109
+ marginBlock: "space";
10110
+ marginBlockEnd: "space";
10111
+ marginBlockStart: "space";
10112
+ marginInline: "space";
10113
+ marginInlineEnd: "space";
10114
+ marginInlineStart: "space";
10115
+ padding: "space";
10116
+ paddingTop: "space";
10117
+ paddingRight: "space";
10118
+ paddingBottom: "space";
10119
+ paddingLeft: "space";
10120
+ paddingBlock: "space";
10121
+ paddingBlockEnd: "space";
10122
+ paddingBlockStart: "space";
10123
+ paddingInline: "space";
10124
+ paddingInlineEnd: "space";
10125
+ paddingInlineStart: "space";
10126
+ scrollMargin: "space";
10127
+ scrollMarginTop: "space";
10128
+ scrollMarginRight: "space";
10129
+ scrollMarginBottom: "space";
10130
+ scrollMarginLeft: "space";
10131
+ scrollMarginBlock: "space";
10132
+ scrollMarginBlockEnd: "space";
10133
+ scrollMarginBlockStart: "space";
10134
+ scrollMarginInline: "space";
10135
+ scrollMarginInlineEnd: "space";
10136
+ scrollMarginInlineStart: "space";
10137
+ scrollPadding: "space";
10138
+ scrollPaddingTop: "space";
10139
+ scrollPaddingRight: "space";
10140
+ scrollPaddingBottom: "space";
10141
+ scrollPaddingLeft: "space";
10142
+ scrollPaddingBlock: "space";
10143
+ scrollPaddingBlockEnd: "space";
10144
+ scrollPaddingBlockStart: "space";
10145
+ scrollPaddingInline: "space";
10146
+ scrollPaddingInlineEnd: "space";
10147
+ scrollPaddingInlineStart: "space";
10148
+ top: "space";
10149
+ right: "space";
10150
+ bottom: "space";
10151
+ left: "space";
10152
+ fontSize: "fontSizes";
10153
+ background: "colors";
10154
+ backgroundColor: "colors";
10155
+ backgroundImage: "colors";
10156
+ borderImage: "colors";
10157
+ border: "colors";
10158
+ borderBlock: "colors";
10159
+ borderBlockEnd: "colors";
10160
+ borderBlockStart: "colors";
10161
+ borderBottom: "colors";
10162
+ borderBottomColor: "colors";
10163
+ borderColor: "colors";
10164
+ borderInline: "colors";
10165
+ borderInlineEnd: "colors";
10166
+ borderInlineStart: "colors";
10167
+ borderLeft: "colors";
10168
+ borderLeftColor: "colors";
10169
+ borderRight: "colors";
10170
+ borderRightColor: "colors";
10171
+ borderTop: "colors";
10172
+ borderTopColor: "colors";
10173
+ caretColor: "colors";
10174
+ color: "colors";
10175
+ columnRuleColor: "colors";
10176
+ outline: "colors";
10177
+ outlineColor: "colors";
10178
+ fill: "colors";
10179
+ stroke: "colors";
10180
+ textDecorationColor: "colors";
10181
+ fontFamily: "fonts";
10182
+ fontWeight: "fontWeights";
10183
+ lineHeight: "lineHeights";
10184
+ letterSpacing: "letterSpacings";
10185
+ blockSize: "sizes";
10186
+ minBlockSize: "sizes";
10187
+ maxBlockSize: "sizes";
10188
+ inlineSize: "sizes";
10189
+ minInlineSize: "sizes";
10190
+ maxInlineSize: "sizes";
10191
+ minWidth: "sizes";
10192
+ maxWidth: "sizes";
10193
+ minHeight: "sizes";
10194
+ maxHeight: "sizes";
10195
+ flexBasis: "sizes";
10196
+ gridTemplateColumns: "sizes";
10197
+ gridTemplateRows: "sizes";
10198
+ borderWidth: "borderWidths";
10199
+ borderTopWidth: "borderWidths";
10200
+ borderLeftWidth: "borderWidths";
10201
+ borderRightWidth: "borderWidths";
10202
+ borderBottomWidth: "borderWidths";
10203
+ borderStyle: "borderStyles";
10204
+ borderTopStyle: "borderStyles";
10205
+ borderLeftStyle: "borderStyles";
10206
+ borderRightStyle: "borderStyles";
10207
+ borderBottomStyle: "borderStyles";
10208
+ borderRadius: "radii";
10209
+ borderTopLeftRadius: "radii";
10210
+ borderTopRightRadius: "radii";
10211
+ borderBottomRightRadius: "radii";
10212
+ borderBottomLeftRadius: "radii";
10213
+ boxShadow: "shadows";
10214
+ textShadow: "shadows";
10215
+ transition: "transitions";
10216
+ zIndex: "zIndices";
10217
+ }, {}>>;
10218
+ type AlertProps = {
10219
+ trigger: React.ReactNode;
10220
+ color?: 'error' | 'warning' | 'success' | 'info';
10221
+ simpleAlert?: {
10222
+ description: string;
10223
+ cancel: boolean;
10224
+ };
10225
+ completAlert?: {
10226
+ title?: string;
10227
+ subtitle?: string;
10228
+ description: string;
10229
+ cancel: boolean;
10230
+ cancelText?: string;
10231
+ actionText?: string;
10232
+ onAction?: () => void;
10233
+ };
10234
+ };
10235
+ declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
10236
+
10237
+ declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.SwitchProps & react.RefAttributes<HTMLButtonElement>>, {
10238
+ color?: "brand" | undefined;
10239
+ size?: "sm" | "md" | "lg" | undefined;
10240
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
10241
+ colors: {
10242
+ brand50: string;
10243
+ brand100: string;
10244
+ brand200: string;
10245
+ brand300: string;
10246
+ brand400: string;
10247
+ brand500: string;
10248
+ brand600: string;
10249
+ brand700: string;
10250
+ brand800: string;
10251
+ brand900: string;
10252
+ brand950: string;
10253
+ blue50: string;
10254
+ blue100: string;
10255
+ blue200: string;
10256
+ blue300: string;
10257
+ blue400: string;
10258
+ blue500: string;
10259
+ blue600: string;
10260
+ blue700: string;
10261
+ blue800: string;
10262
+ blue900: string;
10263
+ blue950: string;
10264
+ red50: string;
10265
+ red100: string;
10266
+ red200: string;
10267
+ red300: string;
10268
+ red400: string;
10269
+ red500: string;
10270
+ red600: string;
10271
+ red700: string;
10272
+ red800: string;
10273
+ red900: string;
10274
+ red950: string;
10275
+ purple50: string;
10276
+ purple100: string;
10277
+ purple200: string;
10278
+ purple300: string;
10279
+ purple400: string;
10280
+ purple500: string;
10281
+ purple600: string;
10282
+ purple700: string;
10283
+ purple800: string;
10284
+ purple900: string;
10285
+ purple950: string;
10286
+ yellow50: string;
10287
+ yellow100: string;
10288
+ yellow200: string;
10289
+ yellow300: string;
10290
+ yellow400: string;
10291
+ yellow500: string;
10292
+ yellow600: string;
10293
+ yellow700: string;
10294
+ yellow800: string;
10295
+ yellow900: string;
10296
+ yellow950: string;
10297
+ dark50: string;
10298
+ dark100: string;
10299
+ dark200: string;
10300
+ dark300: string;
10301
+ dark400: string;
10302
+ dark500: string;
10303
+ dark600: string;
10304
+ dark700: string;
10305
+ dark800: string;
10306
+ dark900: string;
10307
+ dark950: string;
10308
+ neutral50: string;
10309
+ neutral100: string;
10310
+ neutral200: string;
10311
+ neutral300: string;
10312
+ neutral400: string;
10313
+ neutral500: string;
10314
+ neutral600: string;
10315
+ neutral700: string;
10316
+ neutral800: string;
10317
+ neutral900: string;
10318
+ neutral950: string;
10319
+ green50: string;
10320
+ green100: string;
10321
+ green200: string;
10322
+ green300: string;
10323
+ green400: string;
10324
+ green500: string;
10325
+ green600: string;
10326
+ green700: string;
10327
+ green800: string;
10328
+ green900: string;
10329
+ green950: string;
10330
+ grey50: string;
10331
+ grey100: string;
10332
+ grey200: string;
10333
+ grey300: string;
10334
+ grey400: string;
10335
+ grey500: string;
10336
+ grey600: string;
10337
+ grey700: string;
10338
+ grey800: string;
10339
+ grey900: string;
10340
+ grey950: string;
10341
+ error50: string;
10342
+ error100: string;
10343
+ error200: string;
10344
+ error300: string;
10345
+ error400: string;
10346
+ error500: string;
10347
+ error600: string;
10348
+ error700: string;
10349
+ error800: string;
10350
+ error900: string;
10351
+ error950: string;
10352
+ success50: string;
10353
+ success100: string;
10354
+ success200: string;
10355
+ success300: string;
10356
+ success400: string;
10357
+ success500: string;
10358
+ success600: string;
10359
+ success700: string;
10360
+ success800: string;
10361
+ success900: string;
10362
+ success950: string;
10363
+ warning50: string;
10364
+ warning100: string;
10365
+ warning200: string;
10366
+ warning300: string;
10367
+ warning400: string;
10368
+ warning500: string;
10369
+ warning600: string;
10370
+ warning700: string;
10371
+ warning800: string;
10372
+ warning900: string;
10373
+ warning950: string;
10374
+ info50: string;
10375
+ info100: string;
10376
+ info200: string;
10377
+ info300: string;
10378
+ info400: string;
10379
+ info500: string;
10380
+ info600: string;
10381
+ info700: string;
10382
+ info800: string;
10383
+ info900: string;
10384
+ info950: string;
10385
+ };
10386
+ fontSizes: {
10387
+ 2: string;
10388
+ 4: string;
10389
+ 6: string;
10390
+ 8: string;
10391
+ 10: string;
10392
+ 12: string;
10393
+ 13: string;
10394
+ 14: string;
10395
+ 16: string;
10396
+ 18: string;
10397
+ 20: string;
10398
+ 22: string;
10399
+ 24: string;
10400
+ 32: string;
10401
+ 36: string;
10402
+ 40: string;
10403
+ 48: string;
10404
+ 56: string;
10405
+ 64: string;
10406
+ 72: string;
10407
+ 80: string;
10408
+ xs: string;
10409
+ sm: string;
10410
+ md: string;
10411
+ lg: string;
10412
+ '2xl': string;
10413
+ '3xl': string;
10414
+ '4xl': string;
10415
+ full: string;
10416
+ };
10417
+ fonts: {
10418
+ default: string;
10419
+ };
10420
+ fontWeights: {
10421
+ regular: string;
10422
+ medium: string;
10423
+ semibold: string;
10424
+ bold: string;
10425
+ };
10426
+ lineHeights: {
10427
+ smaller: string;
10428
+ shorter: string;
10429
+ short: string;
10430
+ base: string;
10431
+ tall: string;
10432
+ };
10433
+ radii: {
10434
+ '3xs': string;
10435
+ '2xs': string;
10436
+ xs: string;
10437
+ sm: string;
10438
+ md: string;
10439
+ lg: string;
10440
+ xl: string;
10441
+ '2xl': string;
10442
+ '3xl': string;
10443
+ '4xl': string;
10444
+ '5xl': string;
10445
+ '6xl': string;
10446
+ '7xl': string;
10447
+ '8xl': string;
10448
+ '9xl': string;
10449
+ '10xl': string;
10450
+ '11xl': string;
10451
+ '12xl': string;
10452
+ '13xl': string;
10453
+ '14xl': string;
10454
+ full: string;
10455
+ };
10456
+ space: {
10457
+ 2: string;
10458
+ 4: string;
10459
+ 6: string;
10460
+ 8: string;
10461
+ 10: string;
10462
+ 12: string;
10463
+ 13: string;
10464
+ 14: string;
10465
+ 16: string;
10466
+ 18: string;
10467
+ 20: string;
10468
+ 22: string;
10469
+ 24: string;
10470
+ 32: string;
10471
+ 36: string;
10472
+ 40: string;
10473
+ 48: string;
10474
+ 56: string;
10475
+ 64: string;
10476
+ 72: string;
10477
+ 80: string;
10478
+ full: string;
10479
+ };
10480
+ }, {
10481
+ height: "space";
10482
+ width: "space";
10483
+ gap: "space";
10484
+ gridGap: "space";
10485
+ columnGap: "space";
10486
+ gridColumnGap: "space";
10487
+ rowGap: "space";
10488
+ gridRowGap: "space";
10489
+ inset: "space";
10490
+ insetBlock: "space";
10491
+ insetBlockEnd: "space";
10492
+ insetBlockStart: "space";
10493
+ insetInline: "space";
10494
+ insetInlineEnd: "space";
10495
+ insetInlineStart: "space";
10496
+ margin: "space";
10497
+ marginTop: "space";
10498
+ marginRight: "space";
10499
+ marginBottom: "space";
10500
+ marginLeft: "space";
10501
+ marginBlock: "space";
10502
+ marginBlockEnd: "space";
10503
+ marginBlockStart: "space";
10504
+ marginInline: "space";
10505
+ marginInlineEnd: "space";
10506
+ marginInlineStart: "space";
10507
+ padding: "space";
10508
+ paddingTop: "space";
10509
+ paddingRight: "space";
10510
+ paddingBottom: "space";
10511
+ paddingLeft: "space";
10512
+ paddingBlock: "space";
10513
+ paddingBlockEnd: "space";
10514
+ paddingBlockStart: "space";
10515
+ paddingInline: "space";
10516
+ paddingInlineEnd: "space";
10517
+ paddingInlineStart: "space";
10518
+ scrollMargin: "space";
10519
+ scrollMarginTop: "space";
10520
+ scrollMarginRight: "space";
10521
+ scrollMarginBottom: "space";
10522
+ scrollMarginLeft: "space";
10523
+ scrollMarginBlock: "space";
10524
+ scrollMarginBlockEnd: "space";
10525
+ scrollMarginBlockStart: "space";
10526
+ scrollMarginInline: "space";
10527
+ scrollMarginInlineEnd: "space";
10528
+ scrollMarginInlineStart: "space";
10529
+ scrollPadding: "space";
10530
+ scrollPaddingTop: "space";
10531
+ scrollPaddingRight: "space";
10532
+ scrollPaddingBottom: "space";
10533
+ scrollPaddingLeft: "space";
10534
+ scrollPaddingBlock: "space";
10535
+ scrollPaddingBlockEnd: "space";
10536
+ scrollPaddingBlockStart: "space";
10537
+ scrollPaddingInline: "space";
10538
+ scrollPaddingInlineEnd: "space";
10539
+ scrollPaddingInlineStart: "space";
10540
+ top: "space";
10541
+ right: "space";
10542
+ bottom: "space";
10543
+ left: "space";
10544
+ fontSize: "fontSizes";
10545
+ background: "colors";
10546
+ backgroundColor: "colors";
10547
+ backgroundImage: "colors";
10548
+ borderImage: "colors";
10549
+ border: "colors";
10550
+ borderBlock: "colors";
10551
+ borderBlockEnd: "colors";
10552
+ borderBlockStart: "colors";
10553
+ borderBottom: "colors";
10554
+ borderBottomColor: "colors";
10555
+ borderColor: "colors";
10556
+ borderInline: "colors";
10557
+ borderInlineEnd: "colors";
10558
+ borderInlineStart: "colors";
10559
+ borderLeft: "colors";
10560
+ borderLeftColor: "colors";
10561
+ borderRight: "colors";
10562
+ borderRightColor: "colors";
10563
+ borderTop: "colors";
10564
+ borderTopColor: "colors";
10565
+ caretColor: "colors";
10566
+ color: "colors";
10567
+ columnRuleColor: "colors";
10568
+ outline: "colors";
10569
+ outlineColor: "colors";
10570
+ fill: "colors";
10571
+ stroke: "colors";
10572
+ textDecorationColor: "colors";
10573
+ fontFamily: "fonts";
10574
+ fontWeight: "fontWeights";
10575
+ lineHeight: "lineHeights";
10576
+ letterSpacing: "letterSpacings";
10577
+ blockSize: "sizes";
10578
+ minBlockSize: "sizes";
10579
+ maxBlockSize: "sizes";
10580
+ inlineSize: "sizes";
10581
+ minInlineSize: "sizes";
10582
+ maxInlineSize: "sizes";
10583
+ minWidth: "sizes";
10584
+ maxWidth: "sizes";
10585
+ minHeight: "sizes";
10586
+ maxHeight: "sizes";
10587
+ flexBasis: "sizes";
10588
+ gridTemplateColumns: "sizes";
10589
+ gridTemplateRows: "sizes";
10590
+ borderWidth: "borderWidths";
10591
+ borderTopWidth: "borderWidths";
10592
+ borderLeftWidth: "borderWidths";
10593
+ borderRightWidth: "borderWidths";
10594
+ borderBottomWidth: "borderWidths";
10595
+ borderStyle: "borderStyles";
10596
+ borderTopStyle: "borderStyles";
10597
+ borderLeftStyle: "borderStyles";
10598
+ borderRightStyle: "borderStyles";
10599
+ borderBottomStyle: "borderStyles";
10600
+ borderRadius: "radii";
10601
+ borderTopLeftRadius: "radii";
10602
+ borderTopRightRadius: "radii";
10603
+ borderBottomRightRadius: "radii";
10604
+ borderBottomLeftRadius: "radii";
10605
+ boxShadow: "shadows";
10606
+ textShadow: "shadows";
10607
+ transition: "transitions";
10608
+ zIndex: "zIndices";
10609
+ }, {}>>;
10610
+ type SwitchProps = ComponentProps<typeof Switch$1> & {
10611
+ color?: 'brand';
10612
+ size?: 'sm' | 'md' | 'lg';
10613
+ };
10614
+ declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
10615
+
10616
+ declare const StepStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
10617
+ colors: {
10618
+ brand50: string;
10619
+ brand100: string;
10620
+ brand200: string;
10621
+ brand300: string;
10622
+ brand400: string;
10623
+ brand500: string;
10624
+ brand600: string;
10625
+ brand700: string;
10626
+ brand800: string;
10627
+ brand900: string;
10628
+ brand950: string;
10629
+ blue50: string;
10630
+ blue100: string;
10631
+ blue200: string;
10632
+ blue300: string;
10633
+ blue400: string;
10634
+ blue500: string;
10635
+ blue600: string;
10636
+ blue700: string;
10637
+ blue800: string;
10638
+ blue900: string;
10639
+ blue950: string;
10640
+ red50: string;
10641
+ red100: string;
10642
+ red200: string;
10643
+ red300: string;
10644
+ red400: string;
10645
+ red500: string;
10646
+ red600: string;
10647
+ red700: string;
10648
+ red800: string;
10649
+ red900: string;
10650
+ red950: string;
10651
+ purple50: string;
10652
+ purple100: string;
10653
+ purple200: string;
10654
+ purple300: string;
10655
+ purple400: string;
10656
+ purple500: string;
10657
+ purple600: string;
10658
+ purple700: string;
10659
+ purple800: string;
10660
+ purple900: string;
10661
+ purple950: string;
10662
+ yellow50: string;
10663
+ yellow100: string;
10664
+ yellow200: string;
10665
+ yellow300: string;
10666
+ yellow400: string;
10667
+ yellow500: string;
10668
+ yellow600: string;
10669
+ yellow700: string;
10670
+ yellow800: string;
10671
+ yellow900: string;
10672
+ yellow950: string;
10673
+ dark50: string;
10674
+ dark100: string;
10675
+ dark200: string;
10676
+ dark300: string;
10677
+ dark400: string;
10678
+ dark500: string;
10679
+ dark600: string;
10680
+ dark700: string;
10681
+ dark800: string;
10682
+ dark900: string;
10683
+ dark950: string;
10684
+ neutral50: string;
10685
+ neutral100: string;
10686
+ neutral200: string;
10687
+ neutral300: string;
10688
+ neutral400: string;
10689
+ neutral500: string;
10690
+ neutral600: string;
10691
+ neutral700: string;
10692
+ neutral800: string;
10693
+ neutral900: string;
10694
+ neutral950: string;
10695
+ green50: string;
10696
+ green100: string;
10697
+ green200: string;
10698
+ green300: string;
10699
+ green400: string;
10700
+ green500: string;
10701
+ green600: string;
10702
+ green700: string;
10703
+ green800: string;
10704
+ green900: string;
10705
+ green950: string;
10706
+ grey50: string;
10707
+ grey100: string;
10708
+ grey200: string;
10709
+ grey300: string;
10710
+ grey400: string;
10711
+ grey500: string;
10712
+ grey600: string;
10713
+ grey700: string;
10714
+ grey800: string;
10715
+ grey900: string;
10716
+ grey950: string;
10717
+ error50: string;
10718
+ error100: string;
10719
+ error200: string;
10720
+ error300: string;
10721
+ error400: string;
10722
+ error500: string;
10723
+ error600: string;
10724
+ error700: string;
10725
+ error800: string;
10726
+ error900: string;
10727
+ error950: string;
10728
+ success50: string;
10729
+ success100: string;
10730
+ success200: string;
10731
+ success300: string;
10732
+ success400: string;
10733
+ success500: string;
10734
+ success600: string;
10735
+ success700: string;
10736
+ success800: string;
10737
+ success900: string;
10738
+ success950: string;
10739
+ warning50: string;
10740
+ warning100: string;
10741
+ warning200: string;
10742
+ warning300: string;
10743
+ warning400: string;
10744
+ warning500: string;
10745
+ warning600: string;
10746
+ warning700: string;
10747
+ warning800: string;
10748
+ warning900: string;
10749
+ warning950: string;
10750
+ info50: string;
10751
+ info100: string;
10752
+ info200: string;
10753
+ info300: string;
10754
+ info400: string;
10755
+ info500: string;
10756
+ info600: string;
10757
+ info700: string;
10758
+ info800: string;
10759
+ info900: string;
10760
+ info950: string;
10761
+ };
10762
+ fontSizes: {
10763
+ 2: string;
10764
+ 4: string;
10765
+ 6: string;
10766
+ 8: string;
10767
+ 10: string;
10768
+ 12: string;
10769
+ 13: string;
10770
+ 14: string;
10771
+ 16: string;
10772
+ 18: string;
10773
+ 20: string;
10774
+ 22: string;
10775
+ 24: string;
10776
+ 32: string;
10777
+ 36: string;
10778
+ 40: string;
10779
+ 48: string;
10780
+ 56: string;
10781
+ 64: string;
10782
+ 72: string;
10783
+ 80: string;
10784
+ xs: string;
10785
+ sm: string;
10786
+ md: string;
10787
+ lg: string;
10788
+ '2xl': string;
10789
+ '3xl': string;
10790
+ '4xl': string;
10791
+ full: string;
10792
+ };
10793
+ fonts: {
10794
+ default: string;
10795
+ };
10796
+ fontWeights: {
10797
+ regular: string;
10798
+ medium: string;
10799
+ semibold: string;
10800
+ bold: string;
10801
+ };
10802
+ lineHeights: {
10803
+ smaller: string;
10804
+ shorter: string;
10805
+ short: string;
10806
+ base: string;
10807
+ tall: string;
10808
+ };
10809
+ radii: {
10810
+ '3xs': string;
10811
+ '2xs': string;
10812
+ xs: string;
10813
+ sm: string;
10814
+ md: string;
10815
+ lg: string;
10816
+ xl: string;
10817
+ '2xl': string;
10818
+ '3xl': string;
10819
+ '4xl': string;
10820
+ '5xl': string;
10821
+ '6xl': string;
10822
+ '7xl': string;
10823
+ '8xl': string;
10824
+ '9xl': string;
10825
+ '10xl': string;
10826
+ '11xl': string;
10827
+ '12xl': string;
10828
+ '13xl': string;
10829
+ '14xl': string;
10830
+ full: string;
10831
+ };
10832
+ space: {
10833
+ 2: string;
10834
+ 4: string;
10835
+ 6: string;
10836
+ 8: string;
10837
+ 10: string;
10838
+ 12: string;
10839
+ 13: string;
10840
+ 14: string;
10841
+ 16: string;
10842
+ 18: string;
10843
+ 20: string;
10844
+ 22: string;
10845
+ 24: string;
10846
+ 32: string;
10847
+ 36: string;
10848
+ 40: string;
10849
+ 48: string;
10850
+ 56: string;
10851
+ 64: string;
10852
+ 72: string;
10853
+ 80: string;
10854
+ full: string;
10855
+ };
10856
+ }, {
10857
+ height: "space";
10858
+ width: "space";
10859
+ gap: "space";
10860
+ gridGap: "space";
10861
+ columnGap: "space";
10862
+ gridColumnGap: "space";
10863
+ rowGap: "space";
10864
+ gridRowGap: "space";
10865
+ inset: "space";
10866
+ insetBlock: "space";
10867
+ insetBlockEnd: "space";
10868
+ insetBlockStart: "space";
10869
+ insetInline: "space";
10870
+ insetInlineEnd: "space";
10871
+ insetInlineStart: "space";
10872
+ margin: "space";
10873
+ marginTop: "space";
10874
+ marginRight: "space";
10875
+ marginBottom: "space";
10876
+ marginLeft: "space";
10877
+ marginBlock: "space";
10878
+ marginBlockEnd: "space";
10879
+ marginBlockStart: "space";
10880
+ marginInline: "space";
10881
+ marginInlineEnd: "space";
10882
+ marginInlineStart: "space";
10883
+ padding: "space";
10884
+ paddingTop: "space";
10885
+ paddingRight: "space";
10886
+ paddingBottom: "space";
10887
+ paddingLeft: "space";
10888
+ paddingBlock: "space";
10889
+ paddingBlockEnd: "space";
10890
+ paddingBlockStart: "space";
10891
+ paddingInline: "space";
10892
+ paddingInlineEnd: "space";
10893
+ paddingInlineStart: "space";
10894
+ scrollMargin: "space";
10895
+ scrollMarginTop: "space";
10896
+ scrollMarginRight: "space";
10897
+ scrollMarginBottom: "space";
10898
+ scrollMarginLeft: "space";
10899
+ scrollMarginBlock: "space";
10900
+ scrollMarginBlockEnd: "space";
10901
+ scrollMarginBlockStart: "space";
10902
+ scrollMarginInline: "space";
10903
+ scrollMarginInlineEnd: "space";
10904
+ scrollMarginInlineStart: "space";
10905
+ scrollPadding: "space";
10906
+ scrollPaddingTop: "space";
10907
+ scrollPaddingRight: "space";
10908
+ scrollPaddingBottom: "space";
10909
+ scrollPaddingLeft: "space";
10910
+ scrollPaddingBlock: "space";
10911
+ scrollPaddingBlockEnd: "space";
10912
+ scrollPaddingBlockStart: "space";
10913
+ scrollPaddingInline: "space";
10914
+ scrollPaddingInlineEnd: "space";
10915
+ scrollPaddingInlineStart: "space";
10916
+ top: "space";
10917
+ right: "space";
10918
+ bottom: "space";
10919
+ left: "space";
10920
+ fontSize: "fontSizes";
10921
+ background: "colors";
10922
+ backgroundColor: "colors";
10923
+ backgroundImage: "colors";
10924
+ borderImage: "colors";
10925
+ border: "colors";
10926
+ borderBlock: "colors";
10927
+ borderBlockEnd: "colors";
10928
+ borderBlockStart: "colors";
10929
+ borderBottom: "colors";
10930
+ borderBottomColor: "colors";
10931
+ borderColor: "colors";
10932
+ borderInline: "colors";
10933
+ borderInlineEnd: "colors";
10934
+ borderInlineStart: "colors";
10935
+ borderLeft: "colors";
10936
+ borderLeftColor: "colors";
10937
+ borderRight: "colors";
10938
+ borderRightColor: "colors";
10939
+ borderTop: "colors";
10940
+ borderTopColor: "colors";
10941
+ caretColor: "colors";
10942
+ color: "colors";
10943
+ columnRuleColor: "colors";
10944
+ outline: "colors";
10945
+ outlineColor: "colors";
10946
+ fill: "colors";
10947
+ stroke: "colors";
10948
+ textDecorationColor: "colors";
10949
+ fontFamily: "fonts";
10950
+ fontWeight: "fontWeights";
10951
+ lineHeight: "lineHeights";
10952
+ letterSpacing: "letterSpacings";
10953
+ blockSize: "sizes";
10954
+ minBlockSize: "sizes";
10955
+ maxBlockSize: "sizes";
10956
+ inlineSize: "sizes";
10957
+ minInlineSize: "sizes";
10958
+ maxInlineSize: "sizes";
10959
+ minWidth: "sizes";
10960
+ maxWidth: "sizes";
10961
+ minHeight: "sizes";
10962
+ maxHeight: "sizes";
10963
+ flexBasis: "sizes";
10964
+ gridTemplateColumns: "sizes";
10965
+ gridTemplateRows: "sizes";
10966
+ borderWidth: "borderWidths";
10967
+ borderTopWidth: "borderWidths";
10968
+ borderLeftWidth: "borderWidths";
10969
+ borderRightWidth: "borderWidths";
10970
+ borderBottomWidth: "borderWidths";
10971
+ borderStyle: "borderStyles";
10972
+ borderTopStyle: "borderStyles";
10973
+ borderLeftStyle: "borderStyles";
10974
+ borderRightStyle: "borderStyles";
10975
+ borderBottomStyle: "borderStyles";
10976
+ borderRadius: "radii";
10977
+ borderTopLeftRadius: "radii";
10978
+ borderTopRightRadius: "radii";
10979
+ borderBottomRightRadius: "radii";
10980
+ borderBottomLeftRadius: "radii";
10981
+ boxShadow: "shadows";
10982
+ textShadow: "shadows";
10983
+ transition: "transitions";
10984
+ zIndex: "zIndices";
10985
+ }, {}>>;
10986
+ type StepProps = ComponentProps<typeof StepStyled> & {
10987
+ children: react__default.ReactNode;
10988
+ defaultValue: number;
10989
+ };
10990
+ declare function Step({ children, defaultValue, ...props }: StepProps): react_jsx_runtime.JSX.Element;
10991
+ declare function StepTrigger({ value, children, currentStep, ...props }: {
10992
+ value: number;
10993
+ children: react__default.ReactNode | string;
10994
+ currentStep?: number;
10995
+ onClick: () => void;
10996
+ }): react_jsx_runtime.JSX.Element;
10997
+ declare function StepContent({ value, children, ...props }: {
10998
+ value: number;
10999
+ children: react__default.ReactNode;
11000
+ }): react_jsx_runtime.JSX.Element;
11001
+ declare function StepList({ children, currentStep, ...props }: {
11002
+ children: react__default.ReactNode;
11003
+ currentStep: number;
11004
+ }): react_jsx_runtime.JSX.Element;
11005
+ declare function StepWrapper({ children, ...props }: {
11006
+ children: react__default.ReactNode;
11007
+ }): react_jsx_runtime.JSX.Element;
11008
+
11009
+ declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & react.RefAttributes<HTMLDivElement>>, {
11010
+ display?: "flex" | "inline-flex" | undefined;
11011
+ align?: "end" | "stretch" | "center" | "start" | "baseline" | undefined;
11012
+ justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | undefined;
11013
+ direction?: "column" | "column-reverse" | "row" | "row-reverse" | undefined;
11014
+ gap?: 0 | 2 | "0" | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
8771
11015
  gapY?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
8772
11016
  gapX?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
8773
11017
  }, {}, _stitches_react_types_css_util.CSS<{}, {
@@ -9154,7 +11398,7 @@ declare const GridStyled: _stitches_react_types_styled_component.StyledComponent
9154
11398
  justify?: "end" | "center" | "start" | "between" | undefined;
9155
11399
  flow?: "column" | "row" | "row-dense" | "column-dense" | undefined;
9156
11400
  columns?: 1 | 2 | "1" | "2" | "3" | "4" | "6" | 4 | 6 | 12 | "12" | 3 | undefined;
9157
- rows?: 1 | 2 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | 4 | 6 | 8 | 10 | 12 | "10" | "12" | 9 | 3 | "11" | 5 | 7 | 11 | undefined;
11401
+ rows?: 1 | 2 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | 4 | 6 | 8 | 10 | 12 | "10" | "12" | 9 | 3 | 5 | "11" | 7 | 11 | undefined;
9158
11402
  gap?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
9159
11403
  gapX?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
9160
11404
  gapY?: 2 | "2" | "4" | "6" | "8" | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 20 | 22 | 24 | 32 | 36 | 40 | 48 | 56 | 64 | 72 | 80 | "full" | "10" | "12" | "14" | "16" | "20" | "22" | "24" | "32" | "36" | "40" | "48" | "56" | "64" | "72" | "80" | undefined;
@@ -10294,4 +12538,4 @@ type SectionProps = ComponentProps<typeof SectionStyled> & {
10294
12538
  };
10295
12539
  declare function Section({ children, ...props }: SectionProps): react_jsx_runtime.JSX.Element;
10296
12540
 
10297
- export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, ButtonStyled, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle };
12541
+ export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TimePicker, TimePickerDialogStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimePickerTitleStyled, TimerPickerContentStyled };