@mindly/ui-components 6.3.0 → 6.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist/cjs/configs/tailwind/colors.d.ts +1 -0
  2. package/dist/cjs/index.js +8 -8
  3. package/dist/cjs/lib2/features/SpecialistScheduleFeature/types.d.ts +8 -1
  4. package/dist/cjs/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts +1 -0
  5. package/dist/cjs/lib2/features/TextWithClampFeature/types.d.ts +1 -0
  6. package/dist/cjs/lib2/shared/ui/Avatar_v2/Avatar_v2.d.ts +1 -1
  7. package/dist/cjs/lib2/shared/ui/Video/Video.d.ts +1 -0
  8. package/dist/cjs/lib2/shared/ui/Video/styles.d.ts +101 -0
  9. package/dist/cjs/lib2/widgets/SpecialistCardWithScheduleWidget/SpecialistCardWithScheduleSkeleton.d.ts +3 -0
  10. package/dist/cjs/lib2/widgets/SpecialistCardWithScheduleWidget/SpecialistCardWithScheduleWidget.d.ts +4 -0
  11. package/dist/cjs/lib2/widgets/SpecialistCardWithScheduleWidget/index.d.ts +2 -0
  12. package/dist/cjs/lib2/widgets/SpecialistCardWithScheduleWidget/types.d.ts +18 -0
  13. package/dist/cjs/lib2/widgets/index.d.ts +1 -0
  14. package/dist/esm/configs/tailwind/colors.d.ts +1 -0
  15. package/dist/esm/index.js +8 -8
  16. package/dist/esm/lib2/features/SpecialistScheduleFeature/types.d.ts +8 -1
  17. package/dist/esm/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts +1 -0
  18. package/dist/esm/lib2/features/TextWithClampFeature/types.d.ts +1 -0
  19. package/dist/esm/lib2/shared/ui/Avatar_v2/Avatar_v2.d.ts +1 -1
  20. package/dist/esm/lib2/shared/ui/Video/Video.d.ts +1 -0
  21. package/dist/esm/lib2/shared/ui/Video/styles.d.ts +101 -0
  22. package/dist/esm/lib2/widgets/SpecialistCardWithScheduleWidget/SpecialistCardWithScheduleSkeleton.d.ts +3 -0
  23. package/dist/esm/lib2/widgets/SpecialistCardWithScheduleWidget/SpecialistCardWithScheduleWidget.d.ts +4 -0
  24. package/dist/esm/lib2/widgets/SpecialistCardWithScheduleWidget/index.d.ts +2 -0
  25. package/dist/esm/lib2/widgets/SpecialistCardWithScheduleWidget/types.d.ts +18 -0
  26. package/dist/esm/lib2/widgets/index.d.ts +1 -0
  27. package/dist/index.d.ts +116 -85
  28. package/package.json +1 -1
  29. package/src/configs/tailwind/colors.ts +1 -0
package/dist/index.d.ts CHANGED
@@ -79,7 +79,7 @@ type LetterAvatarProps = {
79
79
  fontSize?: number;
80
80
  onClick?: () => void;
81
81
  };
82
- declare const _default$1i: React__default.NamedExoticComponent<LetterAvatarProps>;
82
+ declare const _default$1j: React__default.NamedExoticComponent<LetterAvatarProps>;
83
83
 
84
84
  type ImageWithFallbackProps = JSX.IntrinsicElements['img'] & {
85
85
  onErrorContent: React__default.ReactElement;
@@ -178,7 +178,7 @@ type MediaPlayerProps<TCameraTrack extends Playable | undefined, TAudioTrack ext
178
178
  showControls: boolean;
179
179
  isScreenSharing?: boolean;
180
180
  } & HTMLAttributes<HTMLDivElement>;
181
- declare const _default$1h: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
181
+ declare const _default$1i: <TCameraTrack extends Playable | undefined, TAudioTrack extends Playable | undefined>({ fullwidth, cameraTrack, audioTrack, isVideoTrackMuted, isAudioTrackMuted, networkQuality, fallbackAvatar, fallbackAvatarDimensions, fallbackName, showControls, isScreenSharing, ...props }: MediaPlayerProps<TCameraTrack, TAudioTrack>) => JSX.Element;
182
182
 
183
183
  type RoundButtonPropsType = {
184
184
  disabled?: boolean;
@@ -207,7 +207,7 @@ type ChatListItemProps = {
207
207
  isDisabled?: boolean;
208
208
  t?: WithTranslation['t'];
209
209
  };
210
- declare const _default$1g: React__default.NamedExoticComponent<ChatListItemProps>;
210
+ declare const _default$1h: React__default.NamedExoticComponent<ChatListItemProps>;
211
211
 
212
212
  type ChatMessageProps = {
213
213
  message: string | File;
@@ -235,11 +235,11 @@ type ChatMessageProps = {
235
235
  onClickHandler: () => void;
236
236
  }[] | null;
237
237
  };
238
- declare const _default$1f: React__default.NamedExoticComponent<ChatMessageProps>;
238
+ declare const _default$1g: React__default.NamedExoticComponent<ChatMessageProps>;
239
239
 
240
240
  declare const ChatMessageSkeleton: () => react_jsx_runtime.JSX.Element;
241
241
 
242
- declare const _default$1e: React__default.MemoExoticComponent<() => react_jsx_runtime.JSX.Element>;
242
+ declare const _default$1f: React__default.MemoExoticComponent<() => react_jsx_runtime.JSX.Element>;
243
243
 
244
244
  type EmptyChatList = {
245
245
  title?: string;
@@ -249,7 +249,7 @@ type EmptyChatList = {
249
249
  onClick?: () => void;
250
250
  };
251
251
  declare const EmptyChatList: FC<EmptyChatList>;
252
- declare const _default$1d: React__default.NamedExoticComponent<EmptyChatList>;
252
+ declare const _default$1e: React__default.NamedExoticComponent<EmptyChatList>;
253
253
 
254
254
  type EmptyChatMessagesProps = {
255
255
  title?: string;
@@ -274,7 +274,7 @@ type TextareaProps = {
274
274
  onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
275
275
  t?: WithTranslation['t'];
276
276
  };
277
- declare const _default$1c: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
277
+ declare const _default$1d: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLIonFooterElement>>>;
278
278
 
279
279
  type UpdatesPopupPropsType = {
280
280
  text?: string;
@@ -356,7 +356,7 @@ type VideoPlayerProps = {
356
356
  closeModalHandler?: () => void;
357
357
  onErrorContent: React__default.ReactElement;
358
358
  } & JSX$1.IonModal;
359
- declare const _default$1b: React__default.NamedExoticComponent<VideoPlayerProps>;
359
+ declare const _default$1c: React__default.NamedExoticComponent<VideoPlayerProps>;
360
360
 
361
361
  type NotSupportModalProps = {
362
362
  closeModal?: () => void;
@@ -392,7 +392,7 @@ type VideoCallInfoProps = {
392
392
  abbreviatedSeconds: string;
393
393
  };
394
394
  };
395
- declare const _default$1a: React__default.NamedExoticComponent<VideoCallInfoProps>;
395
+ declare const _default$1b: React__default.NamedExoticComponent<VideoCallInfoProps>;
396
396
 
397
397
  declare enum ConsultationCardType {
398
398
  FEATURE = "feature",
@@ -428,14 +428,14 @@ type ConsultationCardProps = {
428
428
  isBlockedText?: string;
429
429
  };
430
430
 
431
- declare const _default$19: React__default.NamedExoticComponent<ConsultationCardProps>;
431
+ declare const _default$1a: React__default.NamedExoticComponent<ConsultationCardProps>;
432
432
 
433
433
  type SignUpSessionButtonProps = {
434
434
  label: string;
435
435
  isLoading?: boolean;
436
436
  onClick?: () => void;
437
437
  };
438
- declare const _default$18: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
438
+ declare const _default$19: React__default.NamedExoticComponent<SignUpSessionButtonProps>;
439
439
 
440
440
  type EmptyConsultationsProps = {
441
441
  title: string;
@@ -443,7 +443,7 @@ type EmptyConsultationsProps = {
443
443
  buttonLabel?: string;
444
444
  onClick?: () => void;
445
445
  };
446
- declare const _default$17: React__default.NamedExoticComponent<EmptyConsultationsProps>;
446
+ declare const _default$18: React__default.NamedExoticComponent<EmptyConsultationsProps>;
447
447
 
448
448
  type ConsultationModalProps = {
449
449
  isOpen: boolean;
@@ -479,7 +479,7 @@ type ConsultationModalProps = {
479
479
  started?: string;
480
480
  };
481
481
  };
482
- declare const _default$16: React__default.NamedExoticComponent<ConsultationModalProps>;
482
+ declare const _default$17: React__default.NamedExoticComponent<ConsultationModalProps>;
483
483
 
484
484
  type SpecialistData = {
485
485
  id: string;
@@ -497,7 +497,7 @@ type SignUpSessionModalProps = {
497
497
  title: string;
498
498
  cancelBtnLabel: string;
499
499
  };
500
- declare const _default$15: React__default.NamedExoticComponent<SignUpSessionModalProps>;
500
+ declare const _default$16: React__default.NamedExoticComponent<SignUpSessionModalProps>;
501
501
 
502
502
  type ConsultationSpecialistCardProps = {
503
503
  id: string;
@@ -509,7 +509,7 @@ type ConsultationSpecialistCardProps = {
509
509
  signInBtnLabel: string;
510
510
  isBlockedText?: string;
511
511
  };
512
- declare const _default$14: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
512
+ declare const _default$15: React__default.NamedExoticComponent<ConsultationSpecialistCardProps>;
513
513
 
514
514
  type UserInfoModalProps = {
515
515
  isOpen: boolean;
@@ -580,7 +580,7 @@ type ReScheduleProps = {
580
580
  btnLabel: string;
581
581
  };
582
582
  };
583
- declare const _default$13: React__default.NamedExoticComponent<ReScheduleProps>;
583
+ declare const _default$14: React__default.NamedExoticComponent<ReScheduleProps>;
584
584
 
585
585
  type ReScheduleSuccessProps = {
586
586
  name: string;
@@ -618,7 +618,7 @@ type DaySliderProps = JSX$1.IonSlides & HTMLAttributes<HTMLIonSlidesElement> & R
618
618
  tomorrow?: string;
619
619
  };
620
620
  };
621
- declare const _default$12: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
621
+ declare const _default$13: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<DaySliderProps, "ref"> & React__default.RefAttributes<HTMLIonSlidesElement>>>;
622
622
 
623
623
  type SpecialistWorkDirectionsPropsType = {
624
624
  workDirections?: string[] | [];
@@ -627,7 +627,7 @@ type SpecialistWorkDirectionsPropsType = {
627
627
  moreLabel?: string;
628
628
  hideLabel?: string;
629
629
  };
630
- declare const _default$11: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
630
+ declare const _default$12: React__default.NamedExoticComponent<SpecialistWorkDirectionsPropsType>;
631
631
 
632
632
  type SpecialistProfileViewCardProps = {
633
633
  videoLink?: string;
@@ -637,7 +637,7 @@ type SpecialistProfileViewCardProps = {
637
637
  isLoading?: boolean;
638
638
  videoDurationSeconds?: number;
639
639
  };
640
- declare const _default$10: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
640
+ declare const _default$11: React__default.NamedExoticComponent<SpecialistProfileViewCardProps>;
641
641
 
642
642
  type SpecialistAboutProps = {
643
643
  text?: string;
@@ -646,7 +646,7 @@ type SpecialistAboutProps = {
646
646
  moreLabel?: string;
647
647
  hideLabel?: string;
648
648
  };
649
- declare const _default$$: React__default.NamedExoticComponent<SpecialistAboutProps>;
649
+ declare const _default$10: React__default.NamedExoticComponent<SpecialistAboutProps>;
650
650
 
651
651
  type SpecialistEducationCardProps = {
652
652
  institutionName?: string;
@@ -657,7 +657,7 @@ type SpecialistEducationCardProps = {
657
657
  yearEnd?: number | null;
658
658
  showLoader?: boolean;
659
659
  };
660
- declare const _default$_: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
660
+ declare const _default$$: React__default.NamedExoticComponent<SpecialistEducationCardProps>;
661
661
 
662
662
  type SpecialistStatisticsCardProps = {
663
663
  trust?: boolean;
@@ -703,7 +703,7 @@ type BookingScheduleTimeProps = {
703
703
  onClick?: (index: number, item: string) => void;
704
704
  isLoading?: boolean;
705
705
  };
706
- declare const _default$Z: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
706
+ declare const _default$_: React__default.NamedExoticComponent<BookingScheduleTimeProps>;
707
707
 
708
708
  type BookingSpecialistInfoProps = {
709
709
  name: string;
@@ -712,7 +712,7 @@ type BookingSpecialistInfoProps = {
712
712
  avatar?: string;
713
713
  isLoading?: boolean;
714
714
  };
715
- declare const _default$Y: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
715
+ declare const _default$Z: React__default.NamedExoticComponent<BookingSpecialistInfoProps>;
716
716
 
717
717
  declare enum TypographyVariantsEnum {
718
718
  Title48Bold = "Title/48 Bold",
@@ -762,7 +762,7 @@ type TypographyProps = {
762
762
  id?: string;
763
763
  };
764
764
 
765
- declare const _default$X: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
765
+ declare const _default$Y: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLDivElement>>>;
766
766
 
767
767
  type AlertCardVariants = 'transparent' | 'yellow' | 'blue';
768
768
  type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
@@ -778,7 +778,7 @@ type AlertCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
778
778
  };
779
779
  };
780
780
 
781
- declare const _default$W: React$1.NamedExoticComponent<AlertCardProps>;
781
+ declare const _default$X: React$1.NamedExoticComponent<AlertCardProps>;
782
782
 
783
783
  type AppFooterProps = {
784
784
  children?: React__default.ReactNode;
@@ -789,7 +789,7 @@ type AppFooterProps = {
789
789
  toolbarStyle?: CSSProperties;
790
790
  className?: string;
791
791
  };
792
- declare const _default$V: React__default.NamedExoticComponent<AppFooterProps>;
792
+ declare const _default$W: React__default.NamedExoticComponent<AppFooterProps>;
793
793
 
794
794
  type AvatarRoundVariants = 'circle' | 'drop' | 'small';
795
795
 
@@ -801,17 +801,17 @@ type AvatarProps = {
801
801
  src?: string;
802
802
  alt?: string;
803
803
  showSkeleton?: boolean;
804
- onClick?(): void;
804
+ onClick?(e: React__default.MouseEvent<HTMLDivElement>): void;
805
805
  border?: boolean | string;
806
806
  };
807
- declare const _default$U: React__default.NamedExoticComponent<AvatarProps>;
807
+ declare const _default$V: React__default.NamedExoticComponent<AvatarProps>;
808
808
 
809
809
  type SkeletonProps = {
810
810
  animated?: boolean;
811
811
  className?: string;
812
812
  style?: React__default.CSSProperties;
813
813
  };
814
- declare const _default$T: React__default.NamedExoticComponent<SkeletonProps>;
814
+ declare const _default$U: React__default.NamedExoticComponent<SkeletonProps>;
815
815
 
816
816
  type ButtonProps$1 = {
817
817
  fill?: 'outline' | 'clear';
@@ -850,7 +850,7 @@ type FlagProps$1 = {
850
850
  name: string;
851
851
  className?: string;
852
852
  };
853
- declare const _default$S: React__default.NamedExoticComponent<FlagProps$1>;
853
+ declare const _default$T: React__default.NamedExoticComponent<FlagProps$1>;
854
854
 
855
855
  type PictureProps = {
856
856
  width: number;
@@ -868,7 +868,7 @@ type PictureProps = {
868
868
  containerWidth?: number;
869
869
  imageClassName?: string;
870
870
  };
871
- declare const _default$R: React__default.NamedExoticComponent<PictureProps>;
871
+ declare const _default$S: React__default.NamedExoticComponent<PictureProps>;
872
872
 
873
873
  type BadgeType = 'default' | 'accent';
874
874
  type BadgeVariants = 'attention' | 'neutral' | 'success' | 'warning' | 'brand' | 'info';
@@ -879,7 +879,7 @@ type BadgeProps = React$1.ComponentPropsWithoutRef<'span'> & {
879
879
  iconType?: 'check' | React$1.ReactNode;
880
880
  };
881
881
 
882
- declare const _default$Q: React$1.NamedExoticComponent<BadgeProps>;
882
+ declare const _default$R: React$1.NamedExoticComponent<BadgeProps>;
883
883
 
884
884
  type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
885
885
  type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
@@ -887,7 +887,7 @@ type ItemCardProps = React$1.ComponentPropsWithoutRef<'div'> & {
887
887
  size?: 'M' | 'M4' | 'M45';
888
888
  };
889
889
 
890
- declare const _default$P: React$1.NamedExoticComponent<ItemCardProps>;
890
+ declare const _default$Q: React$1.NamedExoticComponent<ItemCardProps>;
891
891
 
892
892
  type AppHeaderProps = {
893
893
  fullwidth?: boolean;
@@ -1837,7 +1837,7 @@ interface TextareaV2Props extends Omit<JSX$1.IonTextarea, 'color' | 'enterkeyhin
1837
1837
  onKeyPress?: (e: KeyboardEvent<HTMLIonTextareaElement>) => void;
1838
1838
  }
1839
1839
 
1840
- declare const _default$O: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1840
+ declare const _default$P: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaV2Props & React__default.RefAttributes<HTMLIonTextareaElement>>>;
1841
1841
 
1842
1842
  type RatingProps = {
1843
1843
  initialRating?: number;
@@ -1850,7 +1850,7 @@ type RatingProps = {
1850
1850
  readonly?: boolean;
1851
1851
  } & RatingComponentProps;
1852
1852
 
1853
- declare const _default$N: React__default.NamedExoticComponent<RatingProps>;
1853
+ declare const _default$O: React__default.NamedExoticComponent<RatingProps>;
1854
1854
 
1855
1855
  declare const RatingCircleWrapper: FC<CircleRatingComponentProps & {
1856
1856
  t: WithTranslation['t'] | any;
@@ -1864,7 +1864,7 @@ type IconButtonProps = {
1864
1864
  fill?: 'clear' | 'filled';
1865
1865
  type?: 'button' | 'submit' | 'reset';
1866
1866
  };
1867
- declare const _default$M: React__default.NamedExoticComponent<IconButtonProps>;
1867
+ declare const _default$N: React__default.NamedExoticComponent<IconButtonProps>;
1868
1868
 
1869
1869
  type ToastProviderProps = ToastStateProps;
1870
1870
  type MindlyToastProps = {
@@ -1910,17 +1910,17 @@ type ProgressBar_v2Props = {
1910
1910
  animationDuration?: number;
1911
1911
  onProgressEnd?: () => void;
1912
1912
  };
1913
- declare const _default$L: React__default.NamedExoticComponent<ProgressBar_v2Props>;
1913
+ declare const _default$M: React__default.NamedExoticComponent<ProgressBar_v2Props>;
1914
1914
 
1915
1915
  type LoadingProps = {
1916
1916
  isOpen: boolean;
1917
1917
  };
1918
- declare const _default$K: React__default.NamedExoticComponent<LoadingProps>;
1918
+ declare const _default$L: React__default.NamedExoticComponent<LoadingProps>;
1919
1919
 
1920
1920
  type ListItemsProps = React$1.HTMLAttributes<HTMLIonListElement> & {
1921
1921
  withBorders?: boolean;
1922
1922
  };
1923
- declare const _default$J: React$1.NamedExoticComponent<ListItemsProps>;
1923
+ declare const _default$K: React$1.NamedExoticComponent<ListItemsProps>;
1924
1924
 
1925
1925
  type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
1926
1926
  leftContent?: React$1.ReactNode;
@@ -1932,7 +1932,7 @@ type ItemProps = React$1.HTMLAttributes<HTMLIonItemElement> & {
1932
1932
  isError?: boolean;
1933
1933
  status?: 'error' | 'attention';
1934
1934
  };
1935
- declare const _default$I: React$1.NamedExoticComponent<ItemProps>;
1935
+ declare const _default$J: React$1.NamedExoticComponent<ItemProps>;
1936
1936
 
1937
1937
  declare enum VariantEnum {
1938
1938
  default = "default",
@@ -1945,6 +1945,7 @@ type VideoProps = {
1945
1945
  isWithWatermark?: boolean;
1946
1946
  isWithPlay?: boolean;
1947
1947
  buttonPlacement?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'center';
1948
+ buttonSize?: 'small' | 'medium' | 'large';
1948
1949
  hiddenVideo?: boolean;
1949
1950
  variant?: VariantEnum;
1950
1951
  preview?: string;
@@ -1960,7 +1961,7 @@ type VideoMethods = {
1960
1961
  play(): void;
1961
1962
  };
1962
1963
  type VideoRef = HTMLVideoElement | VideoMethods;
1963
- declare const _default$H: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
1964
+ declare const _default$I: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<VideoProps & {
1964
1965
  children?: React__default.ReactNode;
1965
1966
  } & React__default.RefAttributes<VideoRef>>>;
1966
1967
 
@@ -2078,15 +2079,15 @@ type MatchProgressProps = {
2078
2079
  className?: string;
2079
2080
  percentMatch: number;
2080
2081
  };
2081
- declare const _default$G: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
2082
+ declare const _default$H: React__default.NamedExoticComponent<React__default.PropsWithChildren<MatchProgressProps>>;
2082
2083
 
2083
2084
  interface Props$8 {
2084
2085
  className?: string;
2085
2086
  title: string;
2086
2087
  }
2087
- declare const _default$F: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$8>>;
2088
+ declare const _default$G: React__default.NamedExoticComponent<React__default.PropsWithChildren<Props$8>>;
2088
2089
 
2089
- declare const _default$E: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
2090
+ declare const _default$F: React__default.NamedExoticComponent<React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLButtonElement>>>;
2090
2091
 
2091
2092
  type Props$7 = {
2092
2093
  className?: string;
@@ -2821,9 +2822,9 @@ type SlotsGridItemProps = {
2821
2822
  onSelectionChange: () => void;
2822
2823
  };
2823
2824
 
2824
- declare const _default$D: React__default.NamedExoticComponent<SlotsGridProps>;
2825
+ declare const _default$E: React__default.NamedExoticComponent<SlotsGridProps>;
2825
2826
 
2826
- declare const _default$C: React$1.NamedExoticComponent<SlotsGridItemProps>;
2827
+ declare const _default$D: React$1.NamedExoticComponent<SlotsGridItemProps>;
2827
2828
 
2828
2829
  type PushNotificationsModalProps = {
2829
2830
  onApplyPermission: () => void;
@@ -2873,6 +2874,7 @@ type SpecialistShortInfoItemFeatureProps = {
2873
2874
  video_link?: string;
2874
2875
  onClickReview?(): void;
2875
2876
  onToggleFavourite?(): void;
2877
+ onVideoPlay?(): void;
2876
2878
  };
2877
2879
  declare const SpecialistShortInfoItemFeature: FC<SpecialistShortInfoItemFeatureProps>;
2878
2880
 
@@ -2938,23 +2940,23 @@ type ShareModalFeatureProps = {
2938
2940
  };
2939
2941
  declare const ShareModalFeature: FC<ShareModalFeatureProps>;
2940
2942
 
2941
- declare const _default$B: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
2943
+ declare const _default$C: React__default.NamedExoticComponent<SpecialistPaymentConsultationDetailsType & TranslationType>;
2942
2944
 
2943
- declare const _default$A: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
2945
+ declare const _default$B: React__default.NamedExoticComponent<SpecialistPaymentCardProps & TranslationType>;
2944
2946
 
2945
2947
  type SpecialistPaymentCommonCardSkeletonType = {
2946
2948
  className?: string;
2947
2949
  };
2948
2950
  declare const SpecialistPaymentCommonCardSkeleton: (props: SpecialistPaymentCommonCardSkeletonType) => react_jsx_runtime.JSX.Element;
2949
2951
 
2950
- declare const _default$z: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
2952
+ declare const _default$A: React__default.NamedExoticComponent<SpecialistPaymentConsultationsProps & TranslationType>;
2951
2953
 
2952
2954
  type ConsultationsListProps = {
2953
2955
  consultations: SpecialistConsultation[];
2954
2956
  locale?: string;
2955
2957
  consultationClick?: (consultation: SpecialistConsultation) => void;
2956
2958
  };
2957
- declare const _default$y: React__default.NamedExoticComponent<ConsultationsListProps>;
2959
+ declare const _default$z: React__default.NamedExoticComponent<ConsultationsListProps>;
2958
2960
 
2959
2961
  type ConsultationsListSkeletonType = {
2960
2962
  className?: string;
@@ -2969,9 +2971,9 @@ type CalendarPickerFeatureProps = {
2969
2971
  dateCallback: (date: Date) => void;
2970
2972
  lastDate: Date;
2971
2973
  };
2972
- declare const _default$x: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
2974
+ declare const _default$y: React__default.NamedExoticComponent<CalendarPickerFeatureProps & TranslationType>;
2973
2975
 
2974
- declare const _default$w: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
2976
+ declare const _default$x: React__default.NamedExoticComponent<PaymentCalendarFeatureProps & TranslationType>;
2975
2977
 
2976
2978
  type GoogleCalendarModalFeatureProps = {
2977
2979
  isOpen: boolean;
@@ -2986,7 +2988,7 @@ type GoogleCalendarModalFeatureProps = {
2986
2988
  declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
2987
2989
 
2988
2990
  type ReviewCardFeatureVariantType = 'default' | 'outlined' | 'full' | 'store' | 'starFirst';
2989
- declare const _default$v: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
2991
+ declare const _default$w: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
2990
2992
  id?: string | undefined;
2991
2993
  avatarSrc?: string | undefined;
2992
2994
  name: string;
@@ -3090,7 +3092,7 @@ type ScreenInputFormFeatureProps = {
3090
3092
  icon?: ReactNode | string;
3091
3093
  isKeyboardShown?: boolean;
3092
3094
  };
3093
- declare const _default$u: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
3095
+ declare const _default$v: React__default.NamedExoticComponent<ScreenInputFormFeatureProps>;
3094
3096
 
3095
3097
  type SelectionType = {
3096
3098
  value: any;
@@ -3108,7 +3110,7 @@ type SpecialistDrumPickerWidgetProps = {
3108
3110
  onTouchStart?: () => void;
3109
3111
  onTouchEnd?: () => void;
3110
3112
  };
3111
- declare const _default$t: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
3113
+ declare const _default$u: React__default.NamedExoticComponent<SpecialistDrumPickerWidgetProps>;
3112
3114
 
3113
3115
  type TextAreaFormFeatureProps = {
3114
3116
  title?: string;
@@ -3124,7 +3126,7 @@ type TextAreaFormFeatureProps = {
3124
3126
  maxlength?: number;
3125
3127
  HeaderComponent?: FC;
3126
3128
  };
3127
- declare const _default$s: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
3129
+ declare const _default$t: React__default.NamedExoticComponent<TextAreaFormFeatureProps>;
3128
3130
 
3129
3131
  type AcceptAgreementFeatureProps = {
3130
3132
  isAccepted: boolean;
@@ -3145,7 +3147,7 @@ type SelectWithSearchFormFeatureProps = {
3145
3147
  otherText?: string;
3146
3148
  buttonLabel?: string;
3147
3149
  } & WithTranslation;
3148
- declare const _default$r: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
3150
+ declare const _default$s: React__default.NamedExoticComponent<SelectWithSearchFormFeatureProps>;
3149
3151
 
3150
3152
  type MarkdownContainerFeatureProps = {
3151
3153
  children?: string | null;
@@ -3153,11 +3155,11 @@ type MarkdownContainerFeatureProps = {
3153
3155
  className?: string;
3154
3156
  forceBlock?: boolean;
3155
3157
  };
3156
- declare const _default$q: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
3158
+ declare const _default$r: React__default.NamedExoticComponent<MarkdownContainerFeatureProps>;
3157
3159
 
3158
- declare const _default$p: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
3160
+ declare const _default$q: React__default.NamedExoticComponent<OnBoardingStartScreenType>;
3159
3161
 
3160
- declare const _default$o: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
3162
+ declare const _default$p: React__default.NamedExoticComponent<OnBoardingInfoScreenType>;
3161
3163
 
3162
3164
  type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
3163
3165
  onChange?: (value: string[]) => void;
@@ -3165,7 +3167,7 @@ type OnBoardingMultiSelectionScreenPreviewFeatureProps = {
3165
3167
  variant?: OnboardingVariant;
3166
3168
  template?: 'checkbox' | 'icon';
3167
3169
  } & OnBoardingMultiSelectScreenType;
3168
- declare const _default$n: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
3170
+ declare const _default$o: React__default.NamedExoticComponent<OnBoardingMultiSelectionScreenPreviewFeatureProps>;
3169
3171
 
3170
3172
  type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
3171
3173
  onChange?: (value: string) => void;
@@ -3173,7 +3175,7 @@ type OnBoardingSingleSelectionScreenPreviewFeatureProps = {
3173
3175
  variant?: OnboardingVariant;
3174
3176
  template?: 'radio' | 'image' | 'roundImage' | 'emoji' | 'icon';
3175
3177
  } & OnBoardingSingleSelectScreenType & OnBoardingSingleImageSelectScreenType & OnBoardingSingleRoundImageSelectScreenType & OnBoardingSingleScaleSelectScreenType;
3176
- declare const _default$m: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
3178
+ declare const _default$n: React__default.NamedExoticComponent<OnBoardingSingleSelectionScreenPreviewFeatureProps>;
3177
3179
 
3178
3180
  declare const OnBoardingLoaderScreenPreviewFeature: FC<OnBoardingLoaderScreenType & {
3179
3181
  t?: WithTranslation['t'];
@@ -3193,9 +3195,9 @@ type OnBoardingProgressFeatureProps = {
3193
3195
  variant?: OnboardingVariant;
3194
3196
  empty?: boolean;
3195
3197
  };
3196
- declare const _default$l: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
3198
+ declare const _default$m: React__default.NamedExoticComponent<OnBoardingProgressFeatureProps>;
3197
3199
 
3198
- declare const _default$k: React__default.NamedExoticComponent<OnBoardingReviewsScreenType>;
3200
+ declare const _default$l: React__default.NamedExoticComponent<OnBoardingReviewsScreenType>;
3199
3201
 
3200
3202
  type OnBoardingEmailScreenPreviewFeatureProps = OnBoardingEmailScreenType & {
3201
3203
  email: string | null;
@@ -3203,7 +3205,7 @@ type OnBoardingEmailScreenPreviewFeatureProps = OnBoardingEmailScreenType & {
3203
3205
  onChangeEmail?: (email: string) => void;
3204
3206
  onSubmit?: () => void;
3205
3207
  };
3206
- declare const _default$j: React__default.NamedExoticComponent<OnBoardingEmailScreenPreviewFeatureProps>;
3208
+ declare const _default$k: React__default.NamedExoticComponent<OnBoardingEmailScreenPreviewFeatureProps>;
3207
3209
 
3208
3210
  type OnBoardingConfirmScreenPreviewFeatureProps = OnBoardingConfirmScreenType & {
3209
3211
  email: string | null;
@@ -3214,7 +3216,7 @@ type OnBoardingConfirmScreenPreviewFeatureProps = OnBoardingConfirmScreenType &
3214
3216
  onChangePassword?: (password: string) => void;
3215
3217
  onSubmit?: () => void;
3216
3218
  };
3217
- declare const _default$i: React__default.NamedExoticComponent<OnBoardingConfirmScreenPreviewFeatureProps>;
3219
+ declare const _default$j: React__default.NamedExoticComponent<OnBoardingConfirmScreenPreviewFeatureProps>;
3218
3220
 
3219
3221
  type OnBoardingPaywallScreenPreviewFeatureProps$2 = {
3220
3222
  variant?: OnboardingVariant;
@@ -3279,9 +3281,10 @@ interface Props$2 extends Omit<TypographyProps, 'children'> {
3279
3281
  t?: WithTranslation['t'];
3280
3282
  presentingElement?: HTMLElement;
3281
3283
  onMoreClick?(): void;
3284
+ hideShowMore?: boolean;
3282
3285
  }
3283
3286
 
3284
- declare const _default$h: React__default.NamedExoticComponent<Props$2>;
3287
+ declare const _default$i: React__default.NamedExoticComponent<Props$2>;
3285
3288
 
3286
3289
  type Props$1 = {
3287
3290
  className?: string;
@@ -3659,8 +3662,15 @@ type ScheduleFeatureProps = {
3659
3662
  t?: WithTranslation['t'];
3660
3663
  locale?: string;
3661
3664
  forceLoading?: boolean;
3665
+ variant?: 'full' | 'flat';
3666
+ slotsLimit?: number;
3667
+ slotFormat?: string;
3668
+ useClosestDateFormat?: boolean;
3669
+ slotVariant?: TypographyVariantsEnum;
3670
+ isBookingLoading?: boolean;
3662
3671
  onDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
3663
3672
  onSlotChange?: (slot: ScheduleSlot | null) => void;
3673
+ onShowAll?: () => void;
3664
3674
  };
3665
3675
 
3666
3676
  declare const SpecialistScheduleFeature: React__default.FC<ScheduleFeatureProps>;
@@ -3819,7 +3829,7 @@ type SpecialistCardProps = {
3819
3829
  };
3820
3830
  declare const SpecialistCard: React__default.FC<SpecialistCardProps>;
3821
3831
 
3822
- declare const _default$g: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
3832
+ declare const _default$h: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
3823
3833
  isError?: boolean | undefined;
3824
3834
  errorStyle?: "filled" | "unfilled" | undefined;
3825
3835
  type?: "number" | "text" | "email" | undefined;
@@ -3843,11 +3853,11 @@ declare const PasswordInput: React__default.ForwardRefExoticComponent<{
3843
3853
  error?: string | null | undefined;
3844
3854
  } & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "type"> & React__default.RefAttributes<HTMLInputElement>>;
3845
3855
 
3846
- declare const _default$f: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
3856
+ declare const _default$g: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
3847
3857
  isError?: boolean | undefined;
3848
3858
  } & React__default.TextareaHTMLAttributes<HTMLTextAreaElement> & React__default.RefAttributes<HTMLTextAreaElement>>>;
3849
3859
 
3850
- declare const _default$e: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
3860
+ declare const _default$f: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
3851
3861
  options: {
3852
3862
  id: string | number;
3853
3863
  label: string | number;
@@ -3882,7 +3892,7 @@ type CustomCheckboxProps = {
3882
3892
  isCheckbox?: boolean;
3883
3893
  onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
3884
3894
  };
3885
- declare const _default$d: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
3895
+ declare const _default$e: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CustomCheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
3886
3896
 
3887
3897
  type CheckboxListItem = {
3888
3898
  id: ReactText;
@@ -3910,7 +3920,7 @@ type CheckboxListProps = {
3910
3920
  from: string;
3911
3921
  };
3912
3922
  };
3913
- declare const _default$c: React__default.NamedExoticComponent<CheckboxListProps>;
3923
+ declare const _default$d: React__default.NamedExoticComponent<CheckboxListProps>;
3914
3924
 
3915
3925
  type BookingHeaderProps = {
3916
3926
  title?: string;
@@ -3924,9 +3934,9 @@ type ProgressBarProps = {
3924
3934
  progress: number;
3925
3935
  loaderTitle?: string;
3926
3936
  };
3927
- declare const _default$b: React__default.NamedExoticComponent<ProgressBarProps>;
3937
+ declare const _default$c: React__default.NamedExoticComponent<ProgressBarProps>;
3928
3938
 
3929
- declare const _default$a: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
3939
+ declare const _default$b: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<{
3930
3940
  title: string;
3931
3941
  subTitle?: string | undefined;
3932
3942
  isError?: boolean | undefined;
@@ -3958,7 +3968,7 @@ type FlagProps = {
3958
3968
  dimensions?: number;
3959
3969
  className?: string;
3960
3970
  };
3961
- declare const _default$9: React__default.NamedExoticComponent<FlagProps>;
3971
+ declare const _default$a: React__default.NamedExoticComponent<FlagProps>;
3962
3972
 
3963
3973
  type SpecialistLangsProps = {
3964
3974
  showLoader?: boolean;
@@ -3984,7 +3994,7 @@ type ProfileInformationProps = {
3984
3994
  reviews: string[];
3985
3995
  };
3986
3996
  } & React__default.HTMLAttributes<HTMLDivElement>;
3987
- declare const _default$8: React__default.NamedExoticComponent<ProfileInformationProps>;
3997
+ declare const _default$9: React__default.NamedExoticComponent<ProfileInformationProps>;
3988
3998
 
3989
3999
  type SpecialistMatchProps = {
3990
4000
  specialistFirstName?: string;
@@ -3996,7 +4006,7 @@ type SpecialistMatchProps = {
3996
4006
  howWeMatchThis: string;
3997
4007
  };
3998
4008
  } & React__default.HTMLAttributes<HTMLDivElement>;
3999
- declare const _default$7: React__default.NamedExoticComponent<SpecialistMatchProps>;
4009
+ declare const _default$8: React__default.NamedExoticComponent<SpecialistMatchProps>;
4000
4010
 
4001
4011
  type SpecialistStatisticProps = {
4002
4012
  learnMoreClick: () => void;
@@ -4016,7 +4026,7 @@ type SpecialistStatisticProps = {
4016
4026
  bookedSession: string;
4017
4027
  };
4018
4028
  } & React__default.HTMLAttributes<HTMLDivElement>;
4019
- declare const _default$6: React__default.NamedExoticComponent<SpecialistStatisticProps>;
4029
+ declare const _default$7: React__default.NamedExoticComponent<SpecialistStatisticProps>;
4020
4030
 
4021
4031
  type RatingWithLabelProps = {
4022
4032
  countOfReviews?: number;
@@ -4143,7 +4153,7 @@ type SpecialistCardWidgetProps = {
4143
4153
  currentUser?: UserType;
4144
4154
  };
4145
4155
 
4146
- declare const _default$5: React__default.NamedExoticComponent<SpecialistCardWidgetProps>;
4156
+ declare const _default$6: React__default.NamedExoticComponent<SpecialistCardWidgetProps>;
4147
4157
 
4148
4158
  type SpecialistCardListWidgetProps = {
4149
4159
  t?: WithTranslation['t'];
@@ -4158,11 +4168,11 @@ type SpecialistCardListWidgetProps = {
4158
4168
  };
4159
4169
  declare const SpecialistCardListWidget: FC<SpecialistCardListWidgetProps>;
4160
4170
 
4161
- declare const _default$4: React__default.NamedExoticComponent<SpecialistPaymentCardProps & {
4171
+ declare const _default$5: React__default.NamedExoticComponent<SpecialistPaymentCardProps & {
4162
4172
  routeClick: () => void;
4163
4173
  } & TranslationType>;
4164
4174
 
4165
- declare const _default$3: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
4175
+ declare const _default$4: React__default.NamedExoticComponent<SpecialistPaymentCardProps & SpecialistPaymentConsultationsProps & TranslationType>;
4166
4176
 
4167
4177
  type UpdateContractWidgetProps = {
4168
4178
  isAccepted: boolean;
@@ -4206,7 +4216,7 @@ type SpecialistDetailWidgetProps = {
4206
4216
  };
4207
4217
  };
4208
4218
 
4209
- declare const _default$2: React__default.NamedExoticComponent<SpecialistDetailWidgetProps>;
4219
+ declare const _default$3: React__default.NamedExoticComponent<SpecialistDetailWidgetProps>;
4210
4220
 
4211
4221
  declare const SpecialistDetailWidgetSkeleton: React__default.FC;
4212
4222
 
@@ -4283,7 +4293,7 @@ type SpecialistPreviewWidgetProps = {
4283
4293
  className?: string;
4284
4294
  };
4285
4295
 
4286
- declare const _default$1: React__default.NamedExoticComponent<SpecialistPreviewWidgetProps>;
4296
+ declare const _default$2: React__default.NamedExoticComponent<SpecialistPreviewWidgetProps>;
4287
4297
 
4288
4298
  type SpecialistDetailWithTabsWidgetProps = {
4289
4299
  t?: WithTranslation['t'];
@@ -4310,8 +4320,29 @@ type SpecialistDetailWithTabsWidgetProps = {
4310
4320
  };
4311
4321
  };
4312
4322
 
4313
- declare const _default: React__default.NamedExoticComponent<SpecialistDetailWithTabsWidgetProps>;
4323
+ declare const _default$1: React__default.NamedExoticComponent<SpecialistDetailWithTabsWidgetProps>;
4314
4324
 
4315
4325
  declare const SpecialistDetailWithTabsSkeleton: React__default.FC;
4316
4326
 
4317
- export { AcceptAgreementFeature, Action, _default$W as AlertCard, AllowFilterValueType, AppFooter, _default$V as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$U as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$Q as Badge, _default$Z as BookingScheduleTime, _default$Y as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$x as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1g as ChatListItem, _default$1e as ChatListSkeleton, _default$1f as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$c as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$19 as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$16 as ConsultationModal, _default$B as ConsultationPricingFeature, _default$14 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$d as CustomCheckbox, CustomRadioButton, _default$e as CustomSelect, _default$f as CustomTextarea, DatePicker, _default$12 as DaySlider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$_ as EducationCard, _default$1d as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$17 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$9 as Flag, FlagTypes, _default$S as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$M as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$I as Item, _default$P as ItemCard, LabelArrowRedirect, _default$1i as LetterAvatar, _default$a as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$F as ListItemWithColumns, _default$J as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$K as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$q as MarkdownContainerFeature, _default$G as MatchProgress, _default$1h as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$i as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$j as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$o as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$n as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$l as OnBoardingProgressFeature, _default$k as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$m as OnBoardingSingleSelectionScreenPreviewFeature, _default$p as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$w as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$y as PaymentSessionsList, _default$R as Picture, PoweredByStripeFeature, _default$8 as ProfileInformation, _default$10 as ProfileView, _default$b as ProgressBar, ProgressBarDashed, _default$L as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$N as Rating, RatingCircleWrapper, _default$13 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$v as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$t as ScreenDrumPickerFormFeature, ScreenInput, _default$u as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$r as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$E as ShowMore, _default$18 as SignUpSessionButton, _default$15 as SignUpSessionModal, SizeValues, Skeleton, _default$T as Skeleton_v2, _default$D as SlotsGrid, _default$C as SlotsGridItem, SolidInput, Specialist, _default$$ as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$5 as SpecialistCardWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$2 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$7 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$A as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$z as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$3 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$4 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$1 as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$6 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$s as TextAreaFormFeature, _default$g as TextInput, _default$h as TextWithClampFeature, _default$1c as Textarea, _default$O as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$X as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$H as Video, _default$1a as VideoCallInfo, _default$1b as VideoPlayer, VideoProvider, _default$11 as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };
4327
+ type SpecialistCardWithScheduleWidgetProps = {
4328
+ t?: WithTranslation['t'];
4329
+ loading?: boolean;
4330
+ specialist: Specialist;
4331
+ isFavourite?: boolean;
4332
+ onToggleFavourite(): void;
4333
+ onCardClick(): void;
4334
+ currentUser?: UserType;
4335
+ isBookingLoading?: boolean;
4336
+ events?: {
4337
+ onVideoClick?(): void;
4338
+ onScheduleDateChange?: (date: ScheduleDate, slots: ScheduleSlot[]) => void;
4339
+ onScheduleSlotChange?: (slot: ScheduleSlot | null) => void;
4340
+ onScheduleShowAll?: () => void;
4341
+ };
4342
+ };
4343
+
4344
+ declare const _default: React__default.NamedExoticComponent<SpecialistCardWithScheduleWidgetProps>;
4345
+
4346
+ declare const SpecialistCardSkeleton: React__default.FC;
4347
+
4348
+ export { AcceptAgreementFeature, Action, _default$X as AlertCard, AllowFilterValueType, AppFooter, _default$W as AppFooter_v2, AppHeader, AppHeaderPage as AppHeaderPageFeature, AppHeader_v2, AppNotSupportedFeature, AutoComplete, Avatar, AvatarProps$1 as AvatarProps, _default$V as Avatar_v2, AvatarProps as Avatar_v2Props, BREAKPOINT_ICON_SIZE, _default$R as Badge, _default$_ as BookingScheduleTime, _default$Z as BookingSpecialistInfo, BreakPointPositionProps, BreakPointPositionResult, Button, Button_v2, CAN_MANAGE_SESSION_TIME_HOURS, COUNTRIES_MAPPER, Calendar, _default$y as CalendarPickerFeature, CancelSession, CardModal, ChangeLanguageModal, _default$1h as ChatListItem, _default$1f as ChatListSkeleton, _default$1g as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$d as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingComponentProps, CircleRatingContent, CircleRatingContext, CircleRatingContextData, CircleRatingContextProps, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, CircleRatingProvider, CircleRatingRange, CircleRatingSize, ClientCanAction, ClientCanParams, ClientSpecialistContractStatusEnum, CollapsableText, ConditionRulesType, Consultation, _default$1a as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$17 as ConsultationModal, _default$C as ConsultationPricingFeature, _default$15 as ConsultationSpecialistCard, ConsultationsListSkeleton, Container, Container_v2, ContentRendererProps, ContractDataFeature, ContractStatusEnum, ContentTree as ContractTreeFeature, CountdownTimerFeature, CountryOfOriginModal, CurrencyLocaleMapper, CurrencySignByLocale, CustomButton, _default$e as CustomCheckbox, CustomRadioButton, _default$f as CustomSelect, _default$g as CustomTextarea, DatePicker, _default$13 as DaySlider, DividerProps, DropdownFeature, DrumListPicker, DynamicCommissionValue, _default$$ as EducationCard, _default$1e as EmptyChatList, EmptyChatMessages, EmptyChatModalFeature, _default$18 as EmptyConsultations, EmptyList, EmptySpecialistListFeature, ErrorCardFeature, FilterFeatureProps, FilterItem, FilterItemBoolean, FilterItemChips, FilterItemRange, FilterItemSelect, FilterOption, FilterOptionValue, FilterValue, FiltersWidget, FiltersWidgetProps, FirstChatMessageModalFeature, _default$a as Flag, FlagTypes, _default$T as Flag_v2, FrequentlyAskedQuestions, GoogleCalendarModalFeature, HeaderWithRedirect, ISpecialistReview, IconAddModerator, IconAlignHorizontalTextCenter, IconAlignHorizontalTextLeft, IconAlignHorizontalTextRight, IconAmEx, IconAppStoreRating, IconApple, IconApplePay, IconArrowDown, IconArrowLeft, IconArrowRange, IconArrowRight, IconArrowTopRight, IconAttachMoney, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$N as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCalendarNew, IconCalendarWithDot, IconCancel, IconCancelBold, IconCancelRounded, IconCapFilled, IconChart, IconChat, IconChat3d, IconChat3dSmaller, IconChatFilled, IconChatOutline, IconCheck, IconCheckCircle, IconCheckSmall, IconCheckboxChecked, IconCheckboxCheckedBold, IconCheckboxThinUnchecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCompare, IconContract, IconCopy, IconCreditCard, IconDelete, IconDivider, IconDocument, IconDot, IconDoubleArrow, IconEcgHeart, IconEdit, IconEditCalendar, IconEmptyList, IconEventBusy, IconExperience, IconEye, IconEyeOff, IconFilters, IconGallery, IconGift, IconGiftNew, IconGlobe, IconGoogle, IconGooglePay, IconHeart, IconHome, IconIdCard, IconInfo, IconInvisible, IconInvoice, IconLanguage, IconLeaderboard, IconLeftArrow, IconLetter, IconLink, IconLock, IconLogout, IconMaestro, IconManageAccounts, IconMastercard, IconMatching, IconMindly, IconMindlyColored, IconMindlyMini, IconMinus, IconMooving, IconMoreVertical, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPaperPencil, IconPause, IconPaywall, IconPersonAlert, IconPlay, IconPlus, IconPoweredByStripe, IconProfile, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconPromocode, IconProps$H as IconProps, IconQueryStats, IconQuestion, IconRadioButtonChecked, IconRadioPartial, IconReceipt, IconReceiptLong, IconRenew, IconResume, IconReviewSessionSubscription, IconReviewSessionTrial, IconSchedule, IconSchema, IconSearch, IconSecure, IconSend, IconSettings, IconShare, IconSpecialistsEnded, IconSpinner, IconStar, IconStarFilled, IconStudyHat, IconStylus, IconSuccess, IconSwitch, IconText, IconTime, IconTimeAdd, IconUnmute, IconUser, IconUserNotFound, IconVerifiedUser, IconVisa, IconVisible, IconWarning, ImageInput, ImageWithFallback, Input, InputSearch, _default$J as Item, _default$Q as ItemCard, LabelArrowRedirect, _default$1j as LetterAvatar, _default$b as LineFileInput, ListBox, ListBoxItem, ListBoxItemProps, ListBoxProps, ListBoxSelectionType, ListItemType, _default$G as ListItemWithColumns, _default$K as ListItems, ListOption, ListOptionsProps, ListSelect, ListSelectProps, ListSimple, _default$L as Loading, LocaleCurrencyMapper, MapStatusContractToUIStatus, _default$r as MarkdownContainerFeature, _default$H as MatchProgress, _default$1i as MediaPlayer, MenuFeature, MindlyReview, MindlyReviewFeature, ModalSheet, NEAR_SESSION_TIME_SECONDS, NewSpecialist, NoInternetConnection, NotSupportModal, ONBOARDING_THEME_DEFAULT_COLORS, OnBoardingBaseScreenType, OnBoardingChartScreenPreviewFeature, OnBoardingChartScreenType, OnBoardingCompareScreenPreviewFeature, OnBoardingCompareScreenType, _default$j as OnBoardingConfirmScreenPreviewFeature, OnBoardingConfirmScreenType, _default$k as OnBoardingEmailScreenPreviewFeature, OnBoardingEmailScreenType, OnBoardingFlowType, OnBoardingGraphScreenPreviewFeature, OnBoardingGraphScreenType, _default$p as OnBoardingInfoScreenPreviewFeature, OnBoardingInfoScreenType, OnBoardingLoaderScreenPreviewFeature, OnBoardingLoaderScreenType, OnBoardingMultiSelectScreenType, _default$o as OnBoardingMultiSelectionScreenPreviewFeature, OnBoardingPaywallScreenPreviewFeature, OnBoardingPaywallScreenType, _default$m as OnBoardingProgressFeature, _default$l as OnBoardingReviewsScreenPreviewFeature, OnBoardingReviewsScreenType, OnBoardingScreenAlertType, OnBoardingScreenButtonType, OnBoardingScreenDescriptionType, OnBoardingScreenEmailType, OnBoardingScreenErrorsType, OnBoardingScreenOptionType, OnBoardingScreenOptionWithScaleType, OnBoardingScreenOptions, OnBoardingScreenPasswordType, OnBoardingScreenPrivacyType, OnBoardingScreenSkipButtonType, OnBoardingScreenStyleOptions, OnBoardingScreenTranslationsType, OnBoardingScreensType, OnBoardingSingleImageSelectScreenType, OnBoardingSingleRoundImageSelectScreenType, OnBoardingSingleScaleSelectScreenType, OnBoardingSingleSelectScreenType, _default$n as OnBoardingSingleSelectionScreenPreviewFeature, _default$q as OnBoardingStartScreenPreviewFeature, OnBoardingStartScreenType, OnboardingVariant, OutdatedPersonalDataFeature, PasswordInput, PaymentBadgeType, _default$x as PaymentCalendarFeature, PaymentCalendarFeatureProps, _default$z as PaymentSessionsList, _default$S as Picture, PoweredByStripeFeature, _default$9 as ProfileInformation, _default$11 as ProfileView, _default$c as ProgressBar, ProgressBarDashed, _default$M as ProgressBar_v2, ProgressRangeProps, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$O as Rating, RatingCircleWrapper, _default$14 as ReSchedule, ReScheduleSuccess, Refresher, ResponseFileType, ReviewCard, _default$w as ReviewCardFeature, ReviewListFeature, ReviewStatistics, ReviewSubscriptionSessionFeature, ReviewSubscriptionSessionFeatureProps, ReviewSwiperSection, ReviewTrialSessionFeature, ReviewTrialSessionFeatureProps, ReviewsCardFeatureSkeleton, ReviewsSummary, RoundButton, RowItemType, RowSelect, RowSelectProps, Rule, SIZES, SOON_SESSION_TIME_SECONDS, Schedule, ScheduleDate, ScheduleSlot, _default$u as ScreenDrumPickerFormFeature, ScreenInput, _default$v as ScreenInputFormFeature, ScreenInputUpdateFeature, SectionHeading, Segment, SegmentColor, SegmentType, SelectItemType, _default$s as SelectWithSearchFormFeature, Session, SessionDetailWidget, SessionPaymentsWidget, SessionPreviewFeature, SessionReview$1 as SessionReview, SessionTime, SessionVariant, SessionsWidget as SessionsListWidget, SessionsWidgetProps, Sex, ShareModalFeature, ShortCurrencySignByLocale, ShortTranscriptionCurrencySignByLocale, _default$F as ShowMore, _default$19 as SignUpSessionButton, _default$16 as SignUpSessionModal, SizeValues, Skeleton, _default$U as Skeleton_v2, _default$E as SlotsGrid, _default$D as SlotsGridItem, SolidInput, Specialist, _default$10 as SpecialistAbout, SpecialistAreaList as SpecialistAreaListFeature, SpecialistCard, SpecialistCardListWidget, _default$6 as SpecialistCardWidget, SpecialistCardSkeleton as SpecialistCardWithScheduleSkeleton, _default as SpecialistCardWithScheduleWidget, SpecialistConsultation, SpecialistConsultationPayment, _default$3 as SpecialistDetailWidget, SpecialistDetailWidgetSkeleton, SpecialistDetailWithTabsSkeleton, _default$1 as SpecialistDetailWithTabsWidget, SpecialistEducation, SpecialistEducationsFeature, SpecialistInfoColumnFeature, SpecialistLangs, _default$8 as SpecialistMatch, SpecialistOrderType, SpecialistPaymentCardProps, _default$B as SpecialistPaymentCommonCardFeature, SpecialistPaymentCommonCardSkeleton, SpecialistPaymentConsultationDetailsType, _default$A as SpecialistPaymentConsultationsFeature, SpecialistPaymentConsultationsProps, SpecialistPaymentCurrencyProps, _default$4 as SpecialistPaymentResumeWidget, SpecialistPaymentResumeWidgetType, SpecialistPaymentTabs, _default$5 as SpecialistPaymentWidget, SpecialistPaymentWidgetType, SpecialistPreviewFeature, SpecialistPreviewListWidget, _default$2 as SpecialistPreviewWidget, SpecialistProfileNotFound, SpecialistReview$1 as SpecialistReview, SpecialistScheduleFeature, SpecialistScheduleProvider, SpecialistScheduleProviderRef, ScheduleSkeleton as SpecialistScheduleSkeletonFeature, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$7 as SpecialistStatistic, Spinner, Spinner_v2, StarRating, StatisticsScroll, StripeSupportedCurrency, Subscription, SubscriptionStatuses, SuccessScreen, SuperSpecialist, SupportedCurrency, SupportedLangs, SwitchDeviceCard, TabItem, Tabs$1 as Tabs, TabsFeature, TabsFeatureSkeleton, TabsToolbarFeature, Tag, Tariff, TariffFeature, _default$t as TextAreaFormFeature, _default$h as TextInput, _default$i as TextWithClampFeature, _default$1d as Textarea, _default$P as Textarea_v2, ThemeProvider, ThemeProviderProps, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, TranslationMock, TranslationType, TreeNode, _default$Y as Typography, TypographyVariantsEnum, UpdateContractWidget, UpdatesCard, UserInfoModal, UserType, VariantType, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$I as Video, _default$1b as VideoCallInfo, _default$1c as VideoPlayer, VideoProvider, _default$12 as WorkDirections, appThemes, canManageSession, currentUser, decOfNum, formatByDigits, getCountryKeyByName, getDateLocale, getFiltersQuery, getFiltersValues, getGMTOffset, getMappedFilterValue, getMockSchedule, getMonthNameInGenitive, getProgressForBreakPoint, getSessionTimeLabel, getSessionVariant, getSessionsByDay, getSessionsByMonth, getSessionsByYear, getSignAgreementsTabs, getStartSessionDate, getStartSessionTimestamp, isClientCan, isFilterSet, isNewSpecialist, isSpecialistActive, isSpecialistBlocked, isSpecialistPublic, isSuperSpecialist, listReviews, mergeRefs, mockSession, mockSessions, mockT, newShade, priceNormalize, replaceMarkdownWithReactElements, roundToPrecision, specialist, splitSessions, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDeepCompareEffect, useDeepUpdateEffect, useDelayMount, useDomRef, useElementWidth, useEvent, useIsKeyBoardShown, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useSpecialistScheduleContext, useStopPropagationEvent, useToastContext, useUpdateEffect, useVideoContext, withSpecialistScheduleContext };