@tactics/lokaal-loket 0.0.295 → 0.0.296

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
2
+ import * as React$1 from 'react';
3
+ import React__default, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
3
4
  import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
4
5
  export { Color, ColorVariant, Radius, Spacing, ThemeConfigI, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
5
6
  import { Feature as Feature$1, Point, LineString } from 'geojson';
@@ -45,9 +46,9 @@ interface IToggle {
45
46
  declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
46
47
 
47
48
  interface OpeninghoursI {
48
- hours: React$1.ReactElement<IOpeningHoursSelect>;
49
- days: React$1.ReactElement<IDaySelect>;
50
- toggle?: React$1.ReactElement<IToggle>;
49
+ hours: React__default.ReactElement<IOpeningHoursSelect>;
50
+ days: React__default.ReactElement<IDaySelect>;
51
+ toggle?: React__default.ReactElement<IToggle>;
51
52
  }
52
53
 
53
54
  declare const Openinghours: ({ hours, days, toggle }: OpeninghoursI) => react_jsx_runtime.JSX.Element;
@@ -117,7 +118,7 @@ declare enum IconType {
117
118
  }
118
119
 
119
120
  interface IScaledIcon {
120
- icon: React$1.ReactElement<IIcon>;
121
+ icon: React__default.ReactElement<IIcon>;
121
122
  size: IconSize;
122
123
  }
123
124
  interface IIcon {
@@ -127,7 +128,7 @@ interface IIcon {
127
128
  }
128
129
 
129
130
  interface ILabeledIcon {
130
- withIconBefore: React$1.ReactElement<IIcon>;
131
+ withIconBefore: React__default.ReactElement<IIcon>;
131
132
  label: string;
132
133
  }
133
134
 
@@ -250,7 +251,7 @@ interface IFigure {
250
251
  screenReaderText: string;
251
252
  }
252
253
  interface IScaledFigure {
253
- figure: React$1.ReactElement<IFigure>;
254
+ figure: React__default.ReactElement<IFigure>;
254
255
  size: FigureSize;
255
256
  }
256
257
 
@@ -264,7 +265,7 @@ declare enum FramePadding {
264
265
  }
265
266
 
266
267
  interface IFrame {
267
- around: React$1.ReactElement<IIcon | IFigure>;
268
+ around: React__default.ReactElement<IIcon | IFigure>;
268
269
  split?: string | false;
269
270
  background?: string;
270
271
  padding?: FramePadding;
@@ -273,7 +274,7 @@ interface IFrame {
273
274
 
274
275
  interface IBadge {
275
276
  type: BadgeType;
276
- figure: React$1.ReactElement<IFigure>;
277
+ figure: React__default.ReactElement<IFigure>;
277
278
  size?: BadgeSize;
278
279
  }
279
280
 
@@ -308,7 +309,7 @@ interface ILogoBase {
308
309
  ariaLabel: string;
309
310
  alt: string;
310
311
  size: LogoSize;
311
- children?: React$1.ReactNode | React$1.ReactNode[];
312
+ children?: React__default.ReactNode | React__default.ReactNode[];
312
313
  }
313
314
  interface ILogoLoad extends ILogoBase {
314
315
  srcset?: ILogoSrc;
@@ -318,7 +319,7 @@ interface ILogo extends ILogoLoad {
318
319
 
319
320
  interface IBrand {
320
321
  ariaLabel: string;
321
- logo: React$1.ReactElement<ILogo>;
322
+ logo: React__default.ReactElement<ILogo>;
322
323
  name: string;
323
324
  }
324
325
 
@@ -338,19 +339,19 @@ interface ILink {
338
339
  id: string;
339
340
  title: string;
340
341
  href: string;
341
- onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
342
+ onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
342
343
  ariaLabel: string;
343
344
  children?: string;
344
345
  context?: LinkContext;
345
- withIconBefore?: React$1.ReactElement<IIcon>;
346
- withIconAfter?: React$1.ReactElement<IIcon>;
347
- target?: React$1.HTMLAttributeAnchorTarget;
346
+ withIconBefore?: React__default.ReactElement<IIcon>;
347
+ withIconAfter?: React__default.ReactElement<IIcon>;
348
+ target?: React__default.HTMLAttributeAnchorTarget;
348
349
  }
349
350
 
350
351
  declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
351
352
 
352
353
  interface IBreadcrumb {
353
- crumbs: React$1.ReactElement<ILink>[];
354
+ crumbs: React__default.ReactElement<ILink>[];
354
355
  currentPage: string;
355
356
  }
356
357
 
@@ -372,7 +373,7 @@ declare enum ButtonType {
372
373
  LINK = "LINK"
373
374
  }
374
375
 
375
- type ClickHandler$1 = React$1.MouseEventHandler<HTMLAnchorElement> & React$1.MouseEventHandler<HTMLButtonElement> & React$1.KeyboardEventHandler<HTMLAnchorElement> & React$1.KeyboardEventHandler<HTMLButtonElement>;
376
+ type ClickHandler$1 = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement> & React__default.KeyboardEventHandler<HTMLAnchorElement> & React__default.KeyboardEventHandler<HTMLButtonElement>;
376
377
  interface IButtonMinimal {
377
378
  id?: string;
378
379
  title: string;
@@ -386,14 +387,14 @@ interface IButton {
386
387
  ariaLabel: string;
387
388
  onClick?: ClickHandler$1;
388
389
  children?: string;
389
- withIconBefore?: React$1.ReactElement<IIcon>;
390
- withIconAfter?: React$1.ReactElement<IIcon>;
390
+ withIconBefore?: React__default.ReactElement<IIcon>;
391
+ withIconAfter?: React__default.ReactElement<IIcon>;
391
392
  type?: ButtonType;
392
393
  context?: ButtonContext;
393
394
  href?: string;
394
395
  }
395
396
 
396
- declare const Button: React$1.ForwardRefExoticComponent<IButton & React$1.RefAttributes<HTMLButtonElement>>;
397
+ declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLButtonElement>>;
397
398
 
398
399
  declare enum CheckboxContext {
399
400
  STANDARD = "STANDARD",
@@ -402,7 +403,7 @@ declare enum CheckboxContext {
402
403
  }
403
404
 
404
405
  interface ICheckboxBase {
405
- onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
406
+ onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
406
407
  value: string;
407
408
  ariaLabel?: string;
408
409
  label: string;
@@ -413,8 +414,15 @@ interface ICheckboxBase {
413
414
  interface ICheckbox extends ICheckboxBase {
414
415
  context?: CheckboxContext;
415
416
  }
417
+ interface ICheckboxGroup {
418
+ direction?: "row" | "column";
419
+ children: React__default.ReactNode;
420
+ }
416
421
 
417
- declare const Checkbox: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: ICheckbox) => react_jsx_runtime.JSX.Element;
422
+ declare const Checkbox: {
423
+ ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: ICheckbox): react_jsx_runtime.JSX.Element;
424
+ Group: ({ direction, children }: ICheckboxGroup) => react_jsx_runtime.JSX.Element;
425
+ };
418
426
 
419
427
  declare enum ChoiceContext {
420
428
  STANDARD = "STANDARD",
@@ -423,14 +431,14 @@ declare enum ChoiceContext {
423
431
  }
424
432
 
425
433
  interface IChoiceBase {
426
- onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
434
+ onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
427
435
  value: string;
428
436
  ariaLabel?: string;
429
437
  label: string;
430
438
  name: string;
431
439
  checked?: boolean;
432
440
  defaultChecked?: boolean;
433
- icon: React$1.ReactElement<IIcon | IFigure>;
441
+ icon: React__default.ReactElement<IIcon | IFigure>;
434
442
  }
435
443
  interface IChoice extends IChoiceBase {
436
444
  context?: ChoiceContext;
@@ -439,7 +447,7 @@ interface IChoice extends IChoiceBase {
439
447
  declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon }: IChoice) => react_jsx_runtime.JSX.Element;
440
448
 
441
449
  interface IFeature {
442
- withIconBefore?: React$1.ReactElement<IIcon>;
450
+ withIconBefore?: React__default.ReactElement<IIcon>;
443
451
  label: string;
444
452
  }
445
453
 
@@ -488,8 +496,8 @@ declare enum InformationBackground {
488
496
  }
489
497
 
490
498
  interface IInformation {
491
- text: React$1.ReactElement<IPlainText>;
492
- frame?: React$1.ReactElement<IFrame>;
499
+ text: React__default.ReactElement<IPlainText>;
500
+ frame?: React__default.ReactElement<IFrame>;
493
501
  variant?: InformationVariant;
494
502
  background?: InformationBackground;
495
503
  }
@@ -510,15 +518,15 @@ declare enum HTMLInputType {
510
518
 
511
519
  interface InputChangeEvent {
512
520
  value: string;
513
- event: React$1.ChangeEvent<HTMLInputElement>;
521
+ event: React__default.ChangeEvent<HTMLInputElement>;
514
522
  }
515
523
  interface InputBlurEvent {
516
524
  value: string;
517
- event: React$1.FocusEvent<HTMLInputElement, Element>;
525
+ event: React__default.FocusEvent<HTMLInputElement, Element>;
518
526
  }
519
527
  interface InputFocusEvent {
520
528
  value: string;
521
- event: React$1.FocusEvent<HTMLInputElement, Element>;
529
+ event: React__default.FocusEvent<HTMLInputElement, Element>;
522
530
  }
523
531
  interface IInputBase {
524
532
  htmlType?: HTMLInputType;
@@ -530,8 +538,8 @@ interface IInputBase {
530
538
  placeholder?: string;
531
539
  ariaLabel?: string;
532
540
  name: string;
533
- withIconBefore?: React$1.ReactElement<IIcon>;
534
- withIconAfter?: React$1.ReactElement<IIcon>;
541
+ withIconBefore?: React__default.ReactElement<IIcon>;
542
+ withIconAfter?: React__default.ReactElement<IIcon>;
535
543
  }
536
544
  interface IInput extends IInputBase {
537
545
  context?: InputContext;
@@ -558,12 +566,12 @@ declare enum ListType {
558
566
 
559
567
  interface IListBase {
560
568
  type?: ListType;
561
- children?: React$1.ReactNode;
569
+ children?: React__default.ReactNode;
562
570
  }
563
571
  interface IList extends IListBase {
564
572
  }
565
573
  interface IListItemBase {
566
- children?: React$1.ReactNode;
574
+ children?: React__default.ReactNode;
567
575
  }
568
576
  interface ListItemThemeableProps extends IListItemBase {
569
577
  }
@@ -588,14 +596,14 @@ declare enum PickContext {
588
596
  }
589
597
 
590
598
  interface IPickBase {
591
- onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
599
+ onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
592
600
  value: string;
593
601
  ariaLabel?: string;
594
602
  label: string;
595
603
  name: string;
596
604
  checked?: boolean;
597
605
  defaultChecked?: boolean;
598
- icon: React$1.ReactElement<IIcon | IFigure>;
606
+ icon: React__default.ReactElement<IIcon | IFigure>;
599
607
  }
600
608
  interface IPick extends IPickBase {
601
609
  context?: PickContext;
@@ -605,7 +613,7 @@ declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked
605
613
 
606
614
  interface IPill {
607
615
  label: string;
608
- withIconBefore?: React$1.ReactElement<IIcon>;
616
+ withIconBefore?: React__default.ReactElement<IIcon>;
609
617
  }
610
618
 
611
619
  declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.Element;
@@ -619,7 +627,7 @@ declare enum RadioContext {
619
627
  }
620
628
 
621
629
  interface IRadioBase {
622
- onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
630
+ onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
623
631
  value: string;
624
632
  ariaLabel?: string;
625
633
  label: string;
@@ -630,13 +638,20 @@ interface IRadioBase {
630
638
  interface IRadio extends IRadioBase {
631
639
  context?: RadioContext;
632
640
  }
641
+ interface IRadioGroup {
642
+ direction?: "row" | "column";
643
+ children: React__default.ReactNode;
644
+ }
633
645
 
634
- declare const Radio: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: IRadio) => react_jsx_runtime.JSX.Element;
646
+ declare const Radio: {
647
+ ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: IRadio): react_jsx_runtime.JSX.Element;
648
+ Group: ({ direction, children }: IRadioGroup) => react_jsx_runtime.JSX.Element;
649
+ };
635
650
 
636
651
  interface IRecord {
637
- withIconBefore?: React$1.ReactElement<IIcon>;
652
+ withIconBefore?: React__default.ReactElement<IIcon>;
638
653
  label: string;
639
- value: string | React$1.ReactNode;
654
+ value: string | React__default.ReactNode;
640
655
  }
641
656
 
642
657
  declare const Record$1: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
@@ -661,7 +676,7 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
661
676
  declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
662
677
 
663
678
  interface ITerm {
664
- figure: React$1.ReactElement<IFigure>;
679
+ figure: React__default.ReactElement<IFigure>;
665
680
  label: string;
666
681
  description?: string;
667
682
  }
@@ -698,14 +713,14 @@ declare enum BigChoiceContext {
698
713
  }
699
714
 
700
715
  interface IBigChoiceBase {
701
- onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
716
+ onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
702
717
  value: string;
703
718
  ariaLabel?: string;
704
719
  label: string;
705
720
  name: string;
706
721
  checked?: boolean;
707
722
  defaultChecked?: boolean;
708
- icon: React$1.ReactElement<IIcon | IFigure>;
723
+ icon: React__default.ReactElement<IIcon | IFigure>;
709
724
  }
710
725
  interface IBigChoice extends IBigChoiceBase {
711
726
  context?: BigChoiceContext;
@@ -720,14 +735,14 @@ declare enum BigPickContext {
720
735
  }
721
736
 
722
737
  interface IBigPickBase {
723
- onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
738
+ onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
724
739
  value: string;
725
740
  ariaLabel?: string;
726
741
  label: string;
727
742
  name: string;
728
743
  checked?: boolean;
729
744
  defaultChecked?: boolean;
730
- icon: React$1.ReactElement<IIcon | IFigure>;
745
+ icon: React__default.ReactElement<IIcon | IFigure>;
731
746
  }
732
747
  interface IBigPick extends IBigPickBase {
733
748
  context?: BigPickContext;
@@ -748,14 +763,14 @@ interface SelectFocusEvent<T> extends SelectEvent<T> {
748
763
  interface InlineSelectI<T> {
749
764
  options: T[];
750
765
  defaultIndex: number;
751
- optionToDisplay: (option: T) => React$1.ReactNode;
752
- optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
766
+ optionToDisplay: (option: T) => React__default.ReactNode;
767
+ optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
753
768
  onChange?: (e: SelectChangeEvent<T>) => void;
754
769
  }
755
770
 
756
771
  declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
757
772
 
758
- type SetState<T> = React$1.Dispatch<React$1.SetStateAction<T>>;
773
+ type SetState<T> = React__default.Dispatch<React__default.SetStateAction<T>>;
759
774
  interface AutoCompleteContextType<T> {
760
775
  input: string;
761
776
  setInput: SetState<string>;
@@ -773,13 +788,13 @@ interface AutocompleteI<T> {
773
788
  readyForInput: boolean;
774
789
  placeholder?: string;
775
790
  ariaLabel?: string;
776
- withIconBefore?: React$1.ReactElement<IIcon>;
777
- withIconAfter?: React$1.ReactElement<IIcon>;
791
+ withIconBefore?: React__default.ReactElement<IIcon>;
792
+ withIconAfter?: React__default.ReactElement<IIcon>;
778
793
  withIconLabelAfter?: string;
779
794
  options: T[];
780
795
  optionDefault?: T;
781
- optionToDisplay: (option: T) => React$1.ReactNode;
782
- optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
796
+ optionToDisplay: (option: T) => React__default.ReactNode;
797
+ optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
783
798
  optionToInputValue: (option: T) => string;
784
799
  onSelected?: (e: AutocompleteSelectEvent<T>) => void;
785
800
  onInputChange?: (e: AutocompleteChangeEvent) => void;
@@ -793,8 +808,8 @@ interface AutocompleteInputI<T> {
793
808
  debounceTime: number;
794
809
  placeholder?: string;
795
810
  ariaLabel?: string;
796
- withIconBefore?: React$1.ReactElement<IIcon>;
797
- withIconAfter?: React$1.ReactElement<IIcon>;
811
+ withIconBefore?: React__default.ReactElement<IIcon>;
812
+ withIconAfter?: React__default.ReactElement<IIcon>;
798
813
  withIconLabelAfter?: string;
799
814
  theme: IInputTheme;
800
815
  options: T[];
@@ -808,13 +823,13 @@ interface AutocompleteInputI<T> {
808
823
  interface AutocompleteOptionI<T> {
809
824
  label: string;
810
825
  withDetails?: string;
811
- withFigure?: React$1.ReactElement<IFigure> | React$1.ReactElement<IIcon>;
826
+ withFigure?: React__default.ReactElement<IFigure> | React__default.ReactElement<IIcon>;
812
827
  }
813
828
  interface AutocompleteOptionsI<T> {
814
829
  options: T[];
815
830
  optionDefault?: T;
816
- optionToDisplay: (option: T) => React$1.ReactNode;
817
- optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
831
+ optionToDisplay: (option: T) => React__default.ReactNode;
832
+ optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
818
833
  optionToInputValue: (option: T) => string;
819
834
  onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
820
835
  onSelected?: (e: AutocompleteSelectEvent<T>) => void;
@@ -831,11 +846,11 @@ interface AutocompleteChangeEvent {
831
846
  }
832
847
  interface AutocompleteBlurEvent {
833
848
  input: string;
834
- event: React$1.FocusEvent<HTMLInputElement>;
849
+ event: React__default.FocusEvent<HTMLInputElement>;
835
850
  }
836
851
  interface AutocompleteFocusEvent {
837
852
  input: string;
838
- event: React$1.FocusEvent<HTMLInputElement>;
853
+ event: React__default.FocusEvent<HTMLInputElement>;
839
854
  }
840
855
 
841
856
  interface AutocompleteInputHandle<T> {
@@ -857,14 +872,14 @@ interface LocationI<T> {
857
872
  name: string;
858
873
  placeholder?: string;
859
874
  ariaLabel?: string;
860
- withIconBefore?: React$1.ReactElement<IIcon>;
861
- withIconAfter?: React$1.ReactElement<IIcon>;
875
+ withIconBefore?: React__default.ReactElement<IIcon>;
876
+ withIconAfter?: React__default.ReactElement<IIcon>;
862
877
  withIconLabelAfter?: string;
863
878
  debounceTime?: number;
864
879
  options: T[];
865
880
  optionDefault?: T;
866
- optionToDisplay: (option: T) => React$1.ReactNode;
867
- optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
881
+ optionToDisplay: (option: T) => React__default.ReactNode;
882
+ optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
868
883
  optionToInputValue: (option: T) => string;
869
884
  onSelected?: (e: AutocompleteSelectEvent<T>) => void;
870
885
  onInputChange?: (e: AutocompleteChangeEvent) => void;
@@ -893,13 +908,13 @@ interface NameI<T> {
893
908
  readyForInput: boolean;
894
909
  placeholder?: string;
895
910
  ariaLabel?: string;
896
- withIconBefore?: React$1.ReactElement<IIcon>;
897
- withIconAfter?: React$1.ReactElement<IIcon>;
911
+ withIconBefore?: React__default.ReactElement<IIcon>;
912
+ withIconAfter?: React__default.ReactElement<IIcon>;
898
913
  debounceTime?: number;
899
914
  options: T[];
900
915
  optionDefault?: T;
901
- optionToDisplay: (option: T) => React$1.ReactNode;
902
- optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
916
+ optionToDisplay: (option: T) => React__default.ReactNode;
917
+ optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
903
918
  optionToInputValue: (option: T) => string;
904
919
  onSelected?: (e: AutocompleteSelectEvent<T>) => void;
905
920
  onInputChange?: (e: AutocompleteChangeEvent) => void;
@@ -944,23 +959,23 @@ interface RouteI<T, D> {
944
959
  debounceTime?: number;
945
960
  originPlaceholder?: string;
946
961
  originAriaLabel?: string;
947
- originWithIconBefore?: React$1.ReactElement<IIcon>;
948
- originWithIconAfter?: React$1.ReactElement<IIcon>;
962
+ originWithIconBefore?: React__default.ReactElement<IIcon>;
963
+ originWithIconAfter?: React__default.ReactElement<IIcon>;
949
964
  originWithIconLabelAfter?: string;
950
965
  destinationPlaceholder?: string;
951
966
  destinationAriaLabel?: string;
952
- destinationWithIconBefore?: React$1.ReactElement<IIcon>;
953
- destinationWithIconAfter?: React$1.ReactElement<IIcon>;
967
+ destinationWithIconBefore?: React__default.ReactElement<IIcon>;
968
+ destinationWithIconAfter?: React__default.ReactElement<IIcon>;
954
969
  destinationWithIconLabelAfter?: string;
955
970
  originOptions: T[];
956
971
  originOptionDefault?: T;
957
- originOptionToDisplay: (option: T) => React$1.ReactNode;
958
- originOptionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
972
+ originOptionToDisplay: (option: T) => React__default.ReactNode;
973
+ originOptionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
959
974
  originOptionToInputValue: (option: T) => string;
960
975
  destinationOptions: D[];
961
976
  destinationOptionDefault?: D;
962
- destinationOptionToDisplay: (option: D) => React$1.ReactNode;
963
- destinationOptionToDisplayWhenSelected?: (option: D) => React$1.ReactNode;
977
+ destinationOptionToDisplay: (option: D) => React__default.ReactNode;
978
+ destinationOptionToDisplayWhenSelected?: (option: D) => React__default.ReactNode;
964
979
  destinationOptionToInputValue: (option: D) => string;
965
980
  onOriginSelected?: (e: AutocompleteSelectEvent<T>) => void;
966
981
  onOriginInputChange?: (e: AutocompleteChangeEvent) => void;
@@ -998,9 +1013,9 @@ declare const FilterTag: ({ label, action }: IFilterTag) => react_jsx_runtime.JS
998
1013
 
999
1014
  interface IRouteLocation {
1000
1015
  onChange?: (value: routeLocation) => void;
1001
- location: React$1.ReactElement;
1016
+ location: React__default.ReactElement;
1002
1017
  locationLabel: string;
1003
- route: React$1.ReactElement;
1018
+ route: React__default.ReactElement;
1004
1019
  routeLabel: string;
1005
1020
  name: string;
1006
1021
  defaultChecked?: boolean;
@@ -1011,13 +1026,13 @@ type routeLocation = "route" | "location";
1011
1026
  declare const RouteLocation: (args: IRouteLocation) => react_jsx_runtime.JSX.Element;
1012
1027
 
1013
1028
  interface SwitchI {
1014
- children: React$1.ReactElement<SwitchItemI>[];
1015
- onChange?: (e: React$1.MouseEvent<HTMLDivElement>, value: string) => void;
1029
+ children: React__default.ReactElement<SwitchItemI>[];
1030
+ onChange?: (e: React__default.MouseEvent<HTMLDivElement>, value: string) => void;
1016
1031
  init: string;
1017
1032
  }
1018
1033
  interface SwitchItemI {
1019
1034
  label: string;
1020
- content: React$1.ReactElement;
1035
+ content: React__default.ReactElement;
1021
1036
  value: string;
1022
1037
  }
1023
1038
  interface SwitchItemContentI extends PropsWithChildren {
@@ -1103,12 +1118,17 @@ declare const Table: {
1103
1118
  interface DayOfBirthI {
1104
1119
  name: string;
1105
1120
  format?: string;
1121
+ initialValue?: {
1122
+ year: number;
1123
+ month: number;
1124
+ day: number;
1125
+ };
1106
1126
  onChange?: (year: number, month: number, day: number) => void;
1107
1127
  placeholder?: string;
1108
1128
  context?: InputContext;
1109
1129
  }
1110
1130
 
1111
- declare const DayOfBirth: ({ onChange, placeholder, name, format, context }: DayOfBirthI) => react_jsx_runtime.JSX.Element;
1131
+ declare const DayOfBirth: ({ onChange, placeholder, name, format, context, initialValue }: DayOfBirthI) => react_jsx_runtime.JSX.Element;
1112
1132
 
1113
1133
  declare enum CompactNavigationContext {
1114
1134
  OPEN = "OPEN",
@@ -1120,15 +1140,15 @@ interface ICompactNavigation extends ICompactNavigationBase {
1120
1140
  }
1121
1141
  interface ICompactNavigationBase {
1122
1142
  toggleLabel: string;
1123
- children?: React$1.ReactNode;
1124
- footer?: React$1.ReactNode;
1143
+ children?: React__default.ReactNode;
1144
+ footer?: React__default.ReactNode;
1125
1145
  }
1126
1146
  interface ICompactNavigationItem {
1127
1147
  label: string;
1128
1148
  href: string;
1129
- onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
1149
+ onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
1130
1150
  isActive?: boolean;
1131
- icon: React$1.ReactElement<IIcon>;
1151
+ icon: React__default.ReactElement<IIcon>;
1132
1152
  }
1133
1153
 
1134
1154
  declare const CompactNavigation: {
@@ -1139,7 +1159,7 @@ declare const CompactNavigation: {
1139
1159
  interface ICompactFooter extends ICompactFooterBase {
1140
1160
  }
1141
1161
  interface ICompactFooterBase {
1142
- children?: React$1.ReactNode;
1162
+ children?: React__default.ReactNode;
1143
1163
  title?: string;
1144
1164
  description?: string;
1145
1165
  }
@@ -1147,16 +1167,16 @@ interface ICompactFooterBase {
1147
1167
  declare const CompactFooter: ({ children, title, description }: ICompactFooter) => react_jsx_runtime.JSX.Element;
1148
1168
 
1149
1169
  interface IDetailsBase {
1150
- children?: React$1.ReactNode;
1170
+ children?: React__default.ReactNode;
1151
1171
  }
1152
1172
  interface IDetails extends IDetailsBase {
1153
1173
  }
1154
1174
  interface DetailsHeaderThemeableProps {
1155
1175
  title: string;
1156
- children?: React$1.ReactNode;
1176
+ children?: React__default.ReactNode;
1157
1177
  }
1158
1178
  interface DetailsContentThemeableProps {
1159
- children?: React$1.ReactNode;
1179
+ children?: React__default.ReactNode;
1160
1180
  }
1161
1181
 
1162
1182
  declare const Details: {
@@ -1166,7 +1186,7 @@ declare const Details: {
1166
1186
  };
1167
1187
 
1168
1188
  interface IFaqBase {
1169
- children?: React$1.ReactNode;
1189
+ children?: React__default.ReactNode;
1170
1190
  }
1171
1191
  interface IFaq extends IFaqBase {
1172
1192
  }
@@ -1174,7 +1194,7 @@ interface FaqHeaderThemeableProps {
1174
1194
  title: string;
1175
1195
  }
1176
1196
  interface FaqContentThemeableProps {
1177
- children?: React$1.ReactNode;
1197
+ children?: React__default.ReactNode;
1178
1198
  }
1179
1199
 
1180
1200
  declare const Faq: {
@@ -1184,19 +1204,19 @@ declare const Faq: {
1184
1204
  };
1185
1205
 
1186
1206
  interface ISelectBox {
1187
- children: React$1.ReactNode;
1207
+ children: React__default.ReactNode;
1188
1208
  }
1189
1209
  interface ISelectBoxMenuItem {
1190
- figure: React$1.ReactElement<IFigure>;
1210
+ figure: React__default.ReactElement<IFigure>;
1191
1211
  label: string;
1192
1212
  action: () => void;
1193
1213
  }
1194
1214
  interface ISelectBoxSelect {
1195
- figure: React$1.ReactElement<IFigure>;
1215
+ figure: React__default.ReactElement<IFigure>;
1196
1216
  label: string;
1197
1217
  }
1198
1218
  interface ISelectBoxMenu {
1199
- children: React$1.ReactNode;
1219
+ children: React__default.ReactNode;
1200
1220
  }
1201
1221
 
1202
1222
  declare const SelectBox: {
@@ -1207,7 +1227,7 @@ declare const SelectBox: {
1207
1227
  };
1208
1228
 
1209
1229
  interface ICategoryLink {
1210
- figure: React$1.ReactElement<IFigure>;
1230
+ figure: React__default.ReactElement<IFigure>;
1211
1231
  title: string;
1212
1232
  description: string;
1213
1233
  label: string;
@@ -1217,7 +1237,7 @@ interface ICategoryLink {
1217
1237
  declare const CategoryLink: ({ figure, title, description, label, action }: ICategoryLink) => react_jsx_runtime.JSX.Element;
1218
1238
 
1219
1239
  interface IQuote {
1220
- quote: React$1.ReactElement<ISafeHtml>;
1240
+ quote: React__default.ReactElement<ISafeHtml>;
1221
1241
  }
1222
1242
 
1223
1243
  declare const Quote: ({ quote }: IQuote) => react_jsx_runtime.JSX.Element;
@@ -1231,7 +1251,7 @@ interface IResultHeading {
1231
1251
  declare const ResultHeading: ({ title, amount, actions }: IResultHeading) => react_jsx_runtime.JSX.Element;
1232
1252
 
1233
1253
  interface IFeatures {
1234
- children: React$1.ReactElement<IFeature> | React$1.ReactElement<IFeature>[];
1254
+ children: React__default.ReactElement<IFeature> | React__default.ReactElement<IFeature>[];
1235
1255
  }
1236
1256
 
1237
1257
  declare const Features: ({ children }: IFeatures) => react_jsx_runtime.JSX.Element;
@@ -1253,15 +1273,15 @@ declare const PlaceholderPhoto: ({ figure, type, height }: IPlaceholderPhoto) =>
1253
1273
  interface INavigation extends INavigationBase {
1254
1274
  }
1255
1275
  interface INavigationBase {
1256
- children?: React$1.ReactNode;
1257
- logo: React$1.ReactNode;
1276
+ children?: React__default.ReactNode;
1277
+ logo: React__default.ReactNode;
1258
1278
  }
1259
1279
  interface INavigationItem {
1260
1280
  label: string;
1261
1281
  href: string;
1262
- onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
1282
+ onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
1263
1283
  isActive?: boolean;
1264
- icon: React$1.ReactElement<IIcon>;
1284
+ icon: React__default.ReactElement<IIcon>;
1265
1285
  }
1266
1286
 
1267
1287
  declare const Navigation: {
@@ -1275,12 +1295,12 @@ declare enum ItemType {
1275
1295
  }
1276
1296
 
1277
1297
  interface IProfileNavigation {
1278
- children?: React$1.ReactElement<ProfileNavigationItemThemeableProps> | React$1.ReactElement<ProfileNavigationItemThemeableProps>[];
1298
+ children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
1279
1299
  }
1280
1300
  interface ProfileNavigationThemeableProps {
1281
- children?: React$1.ReactElement<ProfileNavigationItemThemeableProps> | React$1.ReactElement<ProfileNavigationItemThemeableProps>[];
1301
+ children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
1282
1302
  }
1283
- type ClickHandler = React$1.MouseEventHandler<HTMLAnchorElement> & React$1.MouseEventHandler<HTMLButtonElement>;
1303
+ type ClickHandler = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement>;
1284
1304
  interface ProfileNavigationItemThemeableProps {
1285
1305
  label: string;
1286
1306
  icon: IconType;
@@ -1297,7 +1317,7 @@ declare const ProfileNavigation: {
1297
1317
  };
1298
1318
 
1299
1319
  interface IRecords {
1300
- children: React$1.ReactElement<IRecord> | React$1.ReactElement<IRecord>[];
1320
+ children: React__default.ReactElement<IRecord> | React__default.ReactElement<IRecord>[];
1301
1321
  }
1302
1322
 
1303
1323
  declare const Records: ({ children }: IRecords) => react_jsx_runtime.JSX.Element;
@@ -1312,11 +1332,11 @@ declare const StatusList: ({ children, withCount }: IStatusList) => react_jsx_ru
1312
1332
  interface ITopNavigation extends ITopNavigationBase {
1313
1333
  }
1314
1334
  interface ITopNavigationBase {
1315
- children?: React$1.ReactNode;
1335
+ children?: React__default.ReactNode;
1316
1336
  }
1317
1337
  interface ITopNavigationItemBase {
1318
1338
  href: string;
1319
- onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
1339
+ onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
1320
1340
  label: string;
1321
1341
  icon: IconType;
1322
1342
  }
@@ -1329,20 +1349,20 @@ declare const TopNavigation: {
1329
1349
  interface IOnboarding {
1330
1350
  heading: string;
1331
1351
  content: string;
1332
- cta: React$1.ReactElement;
1333
- figure: React$1.ReactElement<IFigure>;
1334
- onClick?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
1352
+ cta: React__default.ReactElement;
1353
+ figure: React__default.ReactElement<IFigure>;
1354
+ onClick?: (e: React__default.MouseEvent<HTMLButtonElement>) => void;
1335
1355
  }
1336
1356
  interface IOnboardingButton extends IButtonMinimal {
1337
1357
  }
1338
1358
 
1339
- declare const OnboardingButton: React$1.ForwardRefExoticComponent<IOnboardingButton & React$1.RefAttributes<HTMLButtonElement>>;
1359
+ declare const OnboardingButton: React__default.ForwardRefExoticComponent<IOnboardingButton & React__default.RefAttributes<HTMLButtonElement>>;
1340
1360
  declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
1341
1361
 
1342
1362
  interface IQuickSearch {
1343
1363
  heading: string;
1344
- content: React$1.ReactNode;
1345
- action: React$1.ReactNode;
1364
+ content: React__default.ReactNode;
1365
+ action: React__default.ReactNode;
1346
1366
  }
1347
1367
 
1348
1368
  declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
@@ -1370,7 +1390,7 @@ declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_ru
1370
1390
 
1371
1391
  interface ICta {
1372
1392
  label: string;
1373
- action: React$1.ReactElement<IButton>;
1393
+ action: React__default.ReactElement<IButton>;
1374
1394
  }
1375
1395
 
1376
1396
  declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
@@ -1397,7 +1417,7 @@ declare const CurrentLocation: ({ label, action, size }: ICurrentLocation) => re
1397
1417
  interface IFooterNavigation extends IFooterNavigationBase {
1398
1418
  }
1399
1419
  interface IFooterNavigationBase {
1400
- children?: React$1.ReactNode;
1420
+ children?: React__default.ReactNode;
1401
1421
  }
1402
1422
 
1403
1423
  declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
@@ -1421,14 +1441,15 @@ interface IFormElement {
1421
1441
  label: string;
1422
1442
  input: React.ReactNode;
1423
1443
  description?: string;
1444
+ required?: boolean;
1424
1445
  }
1425
1446
 
1426
- declare const FormElement: ({ label, input, description }: IFormElement) => react_jsx_runtime.JSX.Element;
1447
+ declare const FormElement: ({ label, input, description, required }: IFormElement) => react_jsx_runtime.JSX.Element;
1427
1448
 
1428
1449
  interface IFormMessage {
1429
1450
  messages: string[];
1430
1451
  type: string;
1431
- icon: React$1.ReactElement<IIcon>;
1452
+ icon: React__default.ReactElement<IIcon>;
1432
1453
  }
1433
1454
 
1434
1455
  declare enum FormMessageType {
@@ -1468,40 +1489,40 @@ declare const ScheduleSelect: {
1468
1489
  };
1469
1490
 
1470
1491
  interface IHeaderMobile {
1471
- profileNavigation: React$1.ReactNode;
1472
- compactNavigation: React$1.ReactNode;
1492
+ profileNavigation: React__default.ReactNode;
1493
+ compactNavigation: React__default.ReactNode;
1473
1494
  }
1474
1495
  interface IHeaderTop {
1475
- brand: React$1.ReactNode;
1476
- topNavigation: React$1.ReactNode;
1496
+ brand: React__default.ReactNode;
1497
+ topNavigation: React__default.ReactNode;
1477
1498
  }
1478
1499
  interface IHeaderBottom extends IHeaderMobile {
1479
- navigation: React$1.ReactNode;
1480
- brand: React$1.ReactNode;
1500
+ navigation: React__default.ReactNode;
1501
+ brand: React__default.ReactNode;
1481
1502
  stickOnScroll: boolean;
1482
1503
  }
1483
1504
  interface IHeaderAlternate extends IHeaderMobile {
1484
- navigation: React$1.ReactNode;
1485
- brand: React$1.ReactNode;
1505
+ navigation: React__default.ReactNode;
1506
+ brand: React__default.ReactNode;
1486
1507
  }
1487
1508
 
1488
1509
  interface HeaderContextType {
1489
1510
  isSticky: boolean;
1490
- setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1511
+ setIsSticky: React__default.Dispatch<React__default.SetStateAction<boolean>>;
1491
1512
  showLogo: boolean;
1492
- setShowLogo: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1513
+ setShowLogo: React__default.Dispatch<React__default.SetStateAction<boolean>>;
1493
1514
  }
1494
- declare const HeaderContext: React$1.Context<HeaderContextType>;
1515
+ declare const HeaderContext: React__default.Context<HeaderContextType>;
1495
1516
 
1496
1517
  declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
1497
1518
  declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
1498
1519
  declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
1499
1520
 
1500
1521
  interface IFooter {
1501
- top: React$1.ReactNode;
1502
- left: React$1.ReactNode;
1503
- right: React$1.ReactNode;
1504
- bottom: React$1.ReactNode;
1522
+ top: React__default.ReactNode;
1523
+ left: React__default.ReactNode;
1524
+ right: React__default.ReactNode;
1525
+ bottom: React__default.ReactNode;
1505
1526
  }
1506
1527
 
1507
1528
  declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
@@ -1519,7 +1540,7 @@ interface IPin {
1519
1540
  address: string;
1520
1541
  showsExactLocation: boolean;
1521
1542
  type: PointType;
1522
- overlay: React$1.ReactNode;
1543
+ overlay: React__default.ReactNode;
1523
1544
  }
1524
1545
  interface ILine {
1525
1546
  key: string;
@@ -1545,11 +1566,11 @@ interface IFailureMap {
1545
1566
  message: string;
1546
1567
  }
1547
1568
  interface IMapLegendLabel {
1548
- figure: React$1.ReactElement<IFigure>;
1569
+ figure: React__default.ReactElement<IFigure>;
1549
1570
  label: string;
1550
1571
  }
1551
1572
  interface IMapLegendItem {
1552
- pin: React$1.ReactElement<IPin>;
1573
+ pin: React__default.ReactElement<IPin>;
1553
1574
  label: string;
1554
1575
  }
1555
1576
  interface ILocationBasedMap {
@@ -1557,11 +1578,11 @@ interface ILocationBasedMap {
1557
1578
  viewOnly?: boolean;
1558
1579
  points?: IPoints;
1559
1580
  showLoader: boolean;
1560
- loader?: React$1.ReactNode;
1581
+ loader?: React__default.ReactNode;
1561
1582
  origin: IOrigin;
1562
1583
  radius: number;
1563
- legend?: React$1.ReactElement<IMapLegendItem>[];
1564
- legendToggle?: React$1.ReactElement<IMapLegendLabel>;
1584
+ legend?: React__default.ReactElement<IMapLegendItem>[];
1585
+ legendToggle?: React__default.ReactElement<IMapLegendLabel>;
1565
1586
  onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
1566
1587
  }
1567
1588
  interface IDirectionBasedMapBase {
@@ -1570,13 +1591,13 @@ interface IDirectionBasedMapBase {
1570
1591
  activeRoute: string;
1571
1592
  points?: IPoints;
1572
1593
  showLoader: boolean;
1573
- loader?: React$1.ReactNode;
1594
+ loader?: React__default.ReactNode;
1574
1595
  origin?: IOrigin;
1575
1596
  destination?: IDestination;
1576
1597
  deviation: number;
1577
1598
  activeTravelMode: google.maps.TravelMode;
1578
- legend?: React$1.ReactElement<IMapLegendItem>[];
1579
- legendToggle?: React$1.ReactElement<IMapLegendLabel>;
1599
+ legend?: React__default.ReactElement<IMapLegendItem>[];
1600
+ legendToggle?: React__default.ReactElement<IMapLegendLabel>;
1580
1601
  onRouteChange?: (activeRoute: string, route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
1581
1602
  onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
1582
1603
  onAreaChange?: (origin: google.maps.LatLng, destination: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
@@ -1602,27 +1623,27 @@ declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runti
1602
1623
  declare const Map: {
1603
1624
  (props: IMap): react_jsx_runtime.JSX.Element;
1604
1625
  Location: (props: ILocationBasedMap & {
1605
- ref?: React$1.Ref<LocationMapHandle>;
1626
+ ref?: React__default.Ref<LocationMapHandle>;
1606
1627
  }) => JSX.Element;
1607
1628
  Direction: (props: IDirectionBasedMapBase & {
1608
- ref?: React$1.Ref<DirectionMapHandle>;
1629
+ ref?: React__default.Ref<DirectionMapHandle>;
1609
1630
  }) => JSX.Element;
1610
1631
  Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
1611
1632
  Loading: ({ loader }: {
1612
- loader: React$1.ReactNode;
1633
+ loader: React__default.ReactNode;
1613
1634
  }) => react_jsx_runtime.JSX.Element | null;
1614
1635
  };
1615
1636
 
1616
1637
  interface IWizard {
1617
- children: React$1.ReactElement<IWizardStep> | React$1.ReactElement<IWizardStep>[];
1638
+ children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
1618
1639
  }
1619
1640
  interface IWizardStep extends PropsWithChildren {
1620
- figure?: React$1.ReactElement<IFigure>;
1621
- controls?: React$1.ReactElement<IWizardControls>;
1641
+ figure?: React__default.ReactElement<IFigure>;
1642
+ controls?: React__default.ReactElement<IWizardControls>;
1622
1643
  }
1623
1644
  interface IWizardControls {
1624
- back?: React$1.ReactElement<IButton>;
1625
- next?: React$1.ReactElement<IButton>;
1645
+ back?: React__default.ReactElement<IButton>;
1646
+ next?: React__default.ReactElement<IButton>;
1626
1647
  }
1627
1648
 
1628
1649
  declare const WizardStep: ({ children, figure, controls }: IWizardStep) => react_jsx_runtime.JSX.Element;
@@ -1648,21 +1669,21 @@ interface HeadingArrangementBaseI {
1648
1669
  }
1649
1670
 
1650
1671
  interface ISearchFiltersSharedActions {
1651
- submit: React$1.ReactElement<IButton>;
1652
- clear: React$1.ReactElement<IButton>;
1672
+ submit: React__default.ReactElement<IButton>;
1673
+ clear: React__default.ReactElement<IButton>;
1653
1674
  }
1654
1675
  interface ISearchFiltersShared extends ISearchFiltersSharedActions {
1655
- filters: React$1.ReactElement<ISearchFiltersItem>[];
1676
+ filters: React__default.ReactElement<ISearchFiltersItem>[];
1656
1677
  activeFilterCount: number;
1657
- label: React$1.ReactElement<ISearchFiltersLabel>;
1678
+ label: React__default.ReactElement<ISearchFiltersLabel>;
1658
1679
  }
1659
1680
  interface ISearchFilters extends ISearchFiltersShared {
1660
- overlay: React$1.ReactElement<ISearchFiltersOverlay>;
1661
- modal: React$1.ReactElement<ISearchFiltersModal>;
1681
+ overlay: React__default.ReactElement<ISearchFiltersOverlay>;
1682
+ modal: React__default.ReactElement<ISearchFiltersModal>;
1662
1683
  }
1663
1684
  interface ISearchFiltersOverlay {
1664
- heading: React$1.ReactElement<HeadingArrangementBaseI>;
1665
- close: React$1.ReactElement<CloseI>;
1685
+ heading: React__default.ReactElement<HeadingArrangementBaseI>;
1686
+ close: React__default.ReactElement<CloseI>;
1666
1687
  }
1667
1688
  interface ISearchFiltersModal {
1668
1689
  heading: string;
@@ -1670,11 +1691,11 @@ interface ISearchFiltersModal {
1670
1691
  interface ISearchFiltersLabel {
1671
1692
  label?: string;
1672
1693
  description?: string;
1673
- icon: React$1.ReactElement<IIcon>;
1694
+ icon: React__default.ReactElement<IIcon>;
1674
1695
  }
1675
1696
  interface ISearchFiltersItem {
1676
1697
  label: string;
1677
- filter: React$1.ReactNode;
1698
+ filter: React__default.ReactNode;
1678
1699
  }
1679
1700
 
1680
1701
  declare const SearchFiltersLabel: ({ label, description, icon }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
@@ -1689,49 +1710,49 @@ declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear
1689
1710
 
1690
1711
  type SearchInputTypes = "location" | "route" | "name";
1691
1712
  interface ISearchInputsShared {
1692
- location: React$1.ReactElement<ISearchInputsElement>;
1693
- route: React$1.ReactElement<ISearchInputsElement>;
1694
- name: React$1.ReactElement<ISearchInputsElement>;
1713
+ location: React__default.ReactElement<ISearchInputsElement>;
1714
+ route: React__default.ReactElement<ISearchInputsElement>;
1715
+ name: React__default.ReactElement<ISearchInputsElement>;
1695
1716
  activeInput: SearchInputTypes;
1696
1717
  onChanged?: (active: SearchInputTypes) => void;
1697
1718
  onInputOpen?: (active: SearchInputTypes) => void;
1698
- submit: React$1.ReactElement<IButton>;
1719
+ submit: React__default.ReactElement<IButton>;
1699
1720
  }
1700
1721
  interface ISearchInputs extends ISearchInputsShared {
1701
- overlay: React$1.ReactElement<ISearchInputsOverlay>;
1722
+ overlay: React__default.ReactElement<ISearchInputsOverlay>;
1702
1723
  }
1703
1724
  interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
1704
- heading: React$1.ReactElement<HeadingArrangementBaseI>;
1705
- input: React$1.ReactElement<ISearchInputsOverlayInput>;
1706
- close: React$1.ReactElement<CloseI>;
1725
+ heading: React__default.ReactElement<HeadingArrangementBaseI>;
1726
+ input: React__default.ReactElement<ISearchInputsOverlayInput>;
1727
+ close: React__default.ReactElement<CloseI>;
1707
1728
  }
1708
1729
  interface ISearchInputsOverlayContentActions {
1709
- clear?: React$1.ReactElement<IButton>;
1730
+ clear?: React__default.ReactElement<IButton>;
1710
1731
  }
1711
1732
  interface ISearchInputsOverlayInput {
1712
1733
  label: string;
1713
1734
  description: string;
1714
1735
  }
1715
1736
  interface ISearchInputsElement {
1716
- selected: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1717
- option: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1718
- inputLabel: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1719
- heading: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1720
- input: React$1.ReactElement<ISearchInputsItem>;
1737
+ selected: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1738
+ option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1739
+ inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1740
+ heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1741
+ input: React__default.ReactElement<ISearchInputsItem>;
1721
1742
  }
1722
1743
  interface ISearchInputsItem {
1723
- label: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1724
- input: React$1.ReactNode;
1744
+ label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1745
+ input: React__default.ReactNode;
1725
1746
  }
1726
1747
  interface ISearchInputsLabel {
1727
1748
  label: string;
1728
1749
  description?: string;
1729
- figure: React$1.ReactElement<IFigure>;
1750
+ figure: React__default.ReactElement<IFigure>;
1730
1751
  }
1731
1752
  interface ISearchInputsLabelWithIcon {
1732
1753
  label: string;
1733
1754
  description?: string;
1734
- icon: React$1.ReactElement<IIcon>;
1755
+ icon: React__default.ReactElement<IIcon>;
1735
1756
  prominent: boolean;
1736
1757
  }
1737
1758
 
@@ -1748,15 +1769,15 @@ declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent
1748
1769
  declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
1749
1770
 
1750
1771
  interface ICard {
1751
- swipe?: React$1.ReactNode;
1752
- badge: React$1.ReactElement<IBadge>;
1772
+ swipe?: React__default.ReactNode;
1773
+ badge: React__default.ReactElement<IBadge>;
1753
1774
  title: string;
1754
1775
  subtitle?: string;
1755
- info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
1756
- labels: React$1.ReactElement<ILabel>[];
1757
- features?: React$1.ReactElement<IFeatures>;
1758
- action: React$1.ReactElement<IButton>;
1759
- favoriteAction?: React$1.ReactElement<IButton>;
1776
+ info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
1777
+ labels: React__default.ReactElement<ILabel>[];
1778
+ features?: React__default.ReactElement<IFeatures>;
1779
+ action: React__default.ReactElement<IButton>;
1780
+ favoriteAction?: React__default.ReactElement<IButton>;
1760
1781
  detailsAction?: () => void;
1761
1782
  detailsLabel?: string;
1762
1783
  }
@@ -1764,36 +1785,36 @@ interface ICard {
1764
1785
  declare const Card: ({ badge, swipe, title, subtitle, info, labels, features, action, detailsAction, detailsLabel, favoriteAction, }: ICard) => react_jsx_runtime.JSX.Element;
1765
1786
 
1766
1787
  interface IMapCard {
1767
- swipe?: React$1.ReactNode;
1768
- badge: React$1.ReactElement<IBadge>;
1788
+ swipe?: React__default.ReactNode;
1789
+ badge: React__default.ReactElement<IBadge>;
1769
1790
  title: string;
1770
- info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
1771
- action: React$1.ReactElement<IButton>;
1791
+ info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
1792
+ action: React__default.ReactElement<IButton>;
1772
1793
  }
1773
1794
 
1774
1795
  declare const MapCard: ({ badge, swipe, title, info, action }: IMapCard) => react_jsx_runtime.JSX.Element;
1775
1796
 
1776
1797
  interface IListCard {
1777
- badge: React$1.ReactElement<IBadge>;
1798
+ badge: React__default.ReactElement<IBadge>;
1778
1799
  title: string;
1779
1800
  subtitle?: string;
1780
- info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
1781
- labels: React$1.ReactElement<ILabel>[];
1782
- features?: React$1.ReactElement<IFeatures>;
1783
- actions: React$1.ReactElement<IButton>[] | React$1.ReactElement<IButton>;
1801
+ info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
1802
+ labels: React__default.ReactElement<ILabel>[];
1803
+ features?: React__default.ReactElement<IFeatures>;
1804
+ actions: React__default.ReactElement<IButton>[] | React__default.ReactElement<IButton>;
1784
1805
  }
1785
1806
 
1786
1807
  declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions }: IListCard) => react_jsx_runtime.JSX.Element;
1787
1808
 
1788
1809
  interface IFlyoutArrangementSplit {
1789
- top?: React$1.ReactElement;
1790
- left: React$1.ReactElement;
1791
- right: React$1.ReactElement;
1810
+ top?: React__default.ReactElement;
1811
+ left: React__default.ReactElement;
1812
+ right: React__default.ReactElement;
1792
1813
  compactAt: number;
1793
1814
  }
1794
1815
  interface IFlyoutArrangementFull {
1795
- top?: React$1.ReactElement;
1796
- content: React$1.ReactElement;
1816
+ top?: React__default.ReactElement;
1817
+ content: React__default.ReactElement;
1797
1818
  }
1798
1819
 
1799
1820
  declare const FlyoutArrangementSplit: (props: IFlyoutArrangementSplit) => react_jsx_runtime.JSX.Element;
@@ -1805,25 +1826,25 @@ declare const PageHeading: ({ title, label }: HeadingArrangementBaseI) => react_
1805
1826
 
1806
1827
  interface IHomeSectionCards {
1807
1828
  title: string;
1808
- cards: React$1.ReactElement<IInfoCard>[];
1829
+ cards: React__default.ReactElement<IInfoCard>[];
1809
1830
  }
1810
1831
 
1811
1832
  declare const HomeSectionCards: (props: IHomeSectionCards) => react_jsx_runtime.JSX.Element;
1812
1833
 
1813
1834
  interface IHomeSectionFaq {
1814
1835
  title: string;
1815
- content: React$1.ReactElement;
1816
- faqs: React$1.ReactElement<IFaq>[];
1836
+ content: React__default.ReactElement;
1837
+ faqs: React__default.ReactElement<IFaq>[];
1817
1838
  }
1818
1839
 
1819
1840
  declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
1820
1841
 
1821
1842
  interface IHomeSectionGettingStarted {
1822
1843
  title: string;
1823
- locationLink: React$1.ReactElement;
1824
- routeLink: React$1.ReactElement;
1825
- nameLink: React$1.ReactElement;
1826
- onBoarding: React$1.ReactElement;
1844
+ locationLink: React__default.ReactElement;
1845
+ routeLink: React__default.ReactElement;
1846
+ nameLink: React__default.ReactElement;
1847
+ onBoarding: React__default.ReactElement;
1827
1848
  imagePath: string;
1828
1849
  }
1829
1850
 
@@ -1832,15 +1853,15 @@ declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) =>
1832
1853
  interface IDetailsSectionHeader {
1833
1854
  title: string;
1834
1855
  subtitle?: string;
1835
- badge: React$1.ReactNode;
1836
- labels: React$1.ReactNode;
1837
- actions: React$1.ReactNode;
1856
+ badge: React__default.ReactNode;
1857
+ labels: React__default.ReactNode;
1858
+ actions: React__default.ReactNode;
1838
1859
  }
1839
1860
 
1840
1861
  declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
1841
1862
 
1842
1863
  interface IDetailsSectionBack {
1843
- link: React$1.ReactElement<ILink>;
1864
+ link: React__default.ReactElement<ILink>;
1844
1865
  }
1845
1866
 
1846
1867
  declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
@@ -1852,19 +1873,19 @@ interface IDetailsSectionGallery {
1852
1873
  declare const DetailsSectionGallery: (props: IDetailsSectionGallery) => react_jsx_runtime.JSX.Element;
1853
1874
 
1854
1875
  interface IDetailsSectionGeneral {
1855
- info: React$1.ReactNode;
1876
+ info: React__default.ReactNode;
1856
1877
  contactData: IContactData[];
1857
1878
  }
1858
1879
  interface IContactData {
1859
1880
  title: string;
1860
- data: React$1.ReactElement<ILabeledIcon>[];
1881
+ data: React__default.ReactElement<ILabeledIcon>[];
1861
1882
  }
1862
1883
 
1863
1884
  declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
1864
1885
 
1865
1886
  interface IDetailsSectionFacilities {
1866
1887
  title: string;
1867
- facilities: React$1.ReactElement<ITerm>[];
1888
+ facilities: React__default.ReactElement<ITerm>[];
1868
1889
  }
1869
1890
 
1870
1891
  declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
@@ -1872,39 +1893,39 @@ declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => re
1872
1893
  interface IDetailsSectionPrice {
1873
1894
  title: string;
1874
1895
  prices: IPriceData[];
1875
- info: React$1.ReactElement<IPlainText>;
1896
+ info: React__default.ReactElement<IPlainText>;
1876
1897
  }
1877
1898
  interface IPriceData {
1878
1899
  title: string;
1879
- data: React$1.ReactElement<ITable>;
1900
+ data: React__default.ReactElement<ITable>;
1880
1901
  }
1881
1902
 
1882
1903
  declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
1883
1904
 
1884
1905
  interface IDetailsSectionVacation {
1885
1906
  title: string;
1886
- vacations: React$1.ReactElement<ITable>;
1907
+ vacations: React__default.ReactElement<ITable>;
1887
1908
  }
1888
1909
 
1889
1910
  declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
1890
1911
 
1891
1912
  interface IDetailsSectionHours {
1892
1913
  title: string;
1893
- hours: React$1.ReactElement<ITable>;
1914
+ hours: React__default.ReactElement<ITable>;
1894
1915
  info?: string;
1895
1916
  }
1896
1917
 
1897
1918
  declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
1898
1919
 
1899
1920
  interface IDetailsSectionQuote {
1900
- quote: React$1.ReactElement<ISafeHtml>;
1921
+ quote: React__default.ReactElement<ISafeHtml>;
1901
1922
  }
1902
1923
 
1903
1924
  declare const DetailsSectionQuote: (props: IDetailsSectionQuote) => react_jsx_runtime.JSX.Element;
1904
1925
 
1905
1926
  interface IDetailsSectionBasic {
1906
1927
  title: string;
1907
- body: React$1.ReactElement<ISafeHtml>;
1928
+ body: React__default.ReactElement<ISafeHtml>;
1908
1929
  }
1909
1930
 
1910
1931
  declare const DetailsSectionBasic: (props: IDetailsSectionBasic) => react_jsx_runtime.JSX.Element;
@@ -1918,20 +1939,20 @@ declare const DetailsSectionTitle: (props: IDetailsSectionTitle) => react_jsx_ru
1918
1939
  interface IFavoritesSectionHeader {
1919
1940
  title: string;
1920
1941
  description: string;
1921
- figure: React$1.ReactElement<IFigure>;
1942
+ figure: React__default.ReactElement<IFigure>;
1922
1943
  }
1923
1944
 
1924
1945
  declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
1925
1946
 
1926
1947
  interface IFavoritesSectionEmpty {
1927
1948
  description: string;
1928
- action: React$1.ReactElement<IButton>;
1949
+ action: React__default.ReactElement<IButton>;
1929
1950
  }
1930
1951
 
1931
1952
  declare const FavoritesSectionEmpty: (props: IFavoritesSectionEmpty) => react_jsx_runtime.JSX.Element;
1932
1953
 
1933
1954
  interface IFavoritesSectionList {
1934
- cards: React$1.ReactElement<ICard>[];
1955
+ cards: React__default.ReactElement<ICard>[];
1935
1956
  }
1936
1957
 
1937
1958
  declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_runtime.JSX.Element;
@@ -1939,28 +1960,28 @@ declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_
1939
1960
  interface IFavoritesSectionConfirm {
1940
1961
  title: string;
1941
1962
  description: string;
1942
- location: React$1.ReactElement<IColoredBox>;
1943
- actions: React$1.ReactElement<IButton>[];
1963
+ location: React__default.ReactElement<IColoredBox>;
1964
+ actions: React__default.ReactElement<IButton>[];
1944
1965
  }
1945
1966
 
1946
1967
  declare const FavoritesSectionConfirm: (props: IFavoritesSectionConfirm) => react_jsx_runtime.JSX.Element;
1947
1968
 
1948
1969
  interface IRequestsSectionHeader {
1949
1970
  title: string;
1950
- figure: React$1.ReactElement<IFigure>;
1971
+ figure: React__default.ReactElement<IFigure>;
1951
1972
  }
1952
1973
 
1953
1974
  declare const RequestsSectionHeader: (props: IRequestsSectionHeader) => react_jsx_runtime.JSX.Element;
1954
1975
 
1955
1976
  interface IRequestsSectionFooter {
1956
- action: React$1.ReactElement<IButton>;
1977
+ action: React__default.ReactElement<IButton>;
1957
1978
  }
1958
1979
 
1959
1980
  declare const RequestsSectionFooter: (props: IRequestsSectionFooter) => react_jsx_runtime.JSX.Element;
1960
1981
 
1961
1982
  interface IRequestsSectionList {
1962
- cards: React$1.ReactElement<IListCard>[];
1963
- action?: React$1.ReactElement<IButton>;
1983
+ cards: React__default.ReactElement<IListCard>[];
1984
+ action?: React__default.ReactElement<IButton>;
1964
1985
  }
1965
1986
 
1966
1987
  declare const RequestsSectionList: (props: IRequestsSectionList) => react_jsx_runtime.JSX.Element;
@@ -1968,50 +1989,50 @@ declare const RequestsSectionList: (props: IRequestsSectionList) => react_jsx_ru
1968
1989
  interface IAccountSectionHeader {
1969
1990
  title: string;
1970
1991
  subtitle?: string;
1971
- figure: React$1.ReactElement<IFigure>;
1992
+ figure: React__default.ReactElement<IFigure>;
1972
1993
  }
1973
1994
 
1974
1995
  declare const AccountSectionHeader: (props: IAccountSectionHeader) => react_jsx_runtime.JSX.Element;
1975
1996
 
1976
1997
  interface IAccountSectionRegister {
1977
1998
  description: string;
1978
- action: React$1.ReactNode;
1999
+ action: React__default.ReactNode;
1979
2000
  withContainer: boolean;
1980
2001
  }
1981
2002
 
1982
2003
  declare const AccountSectionRegister: (props: IAccountSectionRegister) => react_jsx_runtime.JSX.Element;
1983
2004
 
1984
2005
  interface IAccountSectionProfile {
1985
- form: React$1.ReactNode;
1986
- action: React$1.ReactNode;
2006
+ form: React__default.ReactNode;
2007
+ action: React__default.ReactNode;
1987
2008
  }
1988
2009
 
1989
2010
  declare const AccountSectionProfile: (props: IAccountSectionProfile) => react_jsx_runtime.JSX.Element;
1990
2011
 
1991
2012
  interface IRequestArrangementHeader {
1992
- figure: React$1.ReactElement<IFigure>;
1993
- progress: React$1.ReactElement<IProgressSteps>;
2013
+ figure: React__default.ReactElement<IFigure>;
2014
+ progress: React__default.ReactElement<IProgressSteps>;
1994
2015
  }
1995
2016
 
1996
2017
  declare const RequestArrangementHeader: (props: IRequestArrangementHeader) => react_jsx_runtime.JSX.Element;
1997
2018
 
1998
2019
  interface IOnboardingArrangementIntroduction {
1999
- top: React$1.ReactElement;
2000
- left: React$1.ReactElement;
2001
- right?: React$1.ReactElement;
2002
- action?: React$1.ReactElement;
2003
- image?: React$1.ReactElement;
2020
+ top: React__default.ReactElement;
2021
+ left: React__default.ReactElement;
2022
+ right?: React__default.ReactElement;
2023
+ action?: React__default.ReactElement;
2024
+ image?: React__default.ReactElement;
2004
2025
  }
2005
2026
  interface IOnboardingArrangementStep {
2006
- top: React$1.ReactElement;
2007
- left: React$1.ReactElement;
2008
- right?: React$1.ReactElement;
2009
- image?: React$1.ReactElement;
2027
+ top: React__default.ReactElement;
2028
+ left: React__default.ReactElement;
2029
+ right?: React__default.ReactElement;
2030
+ image?: React__default.ReactElement;
2010
2031
  }
2011
2032
  interface IOnboardingArrangementInformation {
2012
- top: React$1.ReactElement;
2013
- left: React$1.ReactElement;
2014
- image?: React$1.ReactElement;
2033
+ top: React__default.ReactElement;
2034
+ left: React__default.ReactElement;
2035
+ image?: React__default.ReactElement;
2015
2036
  }
2016
2037
 
2017
2038
  declare const OnboardingArrangementIntroduction: (props: IOnboardingArrangementIntroduction) => react_jsx_runtime.JSX.Element;
@@ -2019,42 +2040,42 @@ declare const OnboardingArrangementStep: (props: IOnboardingArrangementStep) =>
2019
2040
  declare const OnboardingArrangementInformation: (props: IOnboardingArrangementInformation) => react_jsx_runtime.JSX.Element;
2020
2041
 
2021
2042
  interface ISearchSectionFilters {
2022
- primary: React$1.ReactElement;
2023
- secondary: React$1.ReactElement | false;
2024
- secondary_active: React$1.ReactElement<IFilterTag>[];
2043
+ primary: React__default.ReactElement;
2044
+ secondary: React__default.ReactElement | false;
2045
+ secondary_active: React__default.ReactElement<IFilterTag>[];
2025
2046
  }
2026
2047
 
2027
2048
  declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_runtime.JSX.Element;
2028
2049
 
2029
2050
  interface IHomeSectionLeftSplit {
2030
2051
  title: string;
2031
- content: React$1.ReactElement;
2052
+ content: React__default.ReactElement;
2032
2053
  imagePath: string;
2033
2054
  }
2034
2055
 
2035
2056
  declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
2036
2057
 
2037
2058
  interface ISharedSectionHeader {
2038
- top?: React$1.ReactElement;
2039
- bottom: React$1.ReactElement;
2040
- filters?: React$1.ReactElement;
2059
+ top?: React__default.ReactElement;
2060
+ bottom: React__default.ReactElement;
2061
+ filters?: React__default.ReactElement;
2041
2062
  }
2042
2063
 
2043
2064
  declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
2044
2065
  declare const SharedSectionHeaderAlternate: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
2045
2066
 
2046
2067
  interface ISharedSectionFooter {
2047
- content: React$1.ReactElement;
2068
+ content: React__default.ReactElement;
2048
2069
  }
2049
2070
 
2050
2071
  declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
2051
2072
 
2052
2073
  interface ISearchSectionResults {
2053
- header?: React$1.ReactElement;
2054
- content: React$1.ReactElement;
2074
+ header?: React__default.ReactElement;
2075
+ content: React__default.ReactElement;
2055
2076
  }
2056
2077
 
2057
- declare const SearchSectionResults: React$1.ForwardRefExoticComponent<ISearchSectionResults & React$1.RefAttributes<HTMLDivElement>>;
2078
+ declare const SearchSectionResults: React__default.ForwardRefExoticComponent<ISearchSectionResults & React__default.RefAttributes<HTMLDivElement>>;
2058
2079
 
2059
2080
  interface ISearchSectionEmpty extends PropsWithChildren {
2060
2081
  title: string;
@@ -2067,11 +2088,11 @@ interface IScrollableContentProps {
2067
2088
  scrollToTop?: () => void;
2068
2089
  }
2069
2090
  interface ISearchSectionResultsWithMap {
2070
- content: React$1.ReactElement<IScrollableContentProps>;
2071
- map?: React$1.ReactElement;
2091
+ content: React__default.ReactElement<IScrollableContentProps>;
2092
+ map?: React__default.ReactElement;
2072
2093
  }
2073
2094
 
2074
- declare const SearchSectionResultsWithMap: React$1.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React$1.RefAttributes<HTMLDivElement>>;
2095
+ declare const SearchSectionResultsWithMap: React__default.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React__default.RefAttributes<HTMLDivElement>>;
2075
2096
 
2076
2097
  declare enum AccordeonContext {
2077
2098
  OPEN = "OPEN",
@@ -2079,7 +2100,7 @@ declare enum AccordeonContext {
2079
2100
  }
2080
2101
 
2081
2102
  interface IAccordeonBase {
2082
- children?: React$1.ReactNode;
2103
+ children?: React__default.ReactNode;
2083
2104
  }
2084
2105
  interface IAccordeon extends IAccordeonBase {
2085
2106
  id?: string;
@@ -2102,7 +2123,7 @@ interface IBackdrop {
2102
2123
  onClick?: () => void;
2103
2124
  }
2104
2125
 
2105
- declare const Backdrop: ({ onClick }: IBackdrop) => React$1.ReactPortal;
2126
+ declare const Backdrop: ({ onClick }: IBackdrop) => React__default.ReactPortal;
2106
2127
 
2107
2128
  interface IBlur extends PropsWithChildren {
2108
2129
  }
@@ -2110,10 +2131,10 @@ interface IBlur extends PropsWithChildren {
2110
2131
  declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
2111
2132
 
2112
2133
  interface ICollapsable {
2113
- content: React$1.ReactNode;
2114
- additional: React$1.ReactNode;
2115
- withContentExpand: React$1.ReactNode;
2116
- withContentCollapse?: React$1.ReactNode;
2134
+ content: React__default.ReactNode;
2135
+ additional: React__default.ReactNode;
2136
+ withContentExpand: React__default.ReactNode;
2137
+ withContentCollapse?: React__default.ReactNode;
2117
2138
  }
2118
2139
 
2119
2140
  declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse }: ICollapsable) => react_jsx_runtime.JSX.Element;
@@ -2126,11 +2147,14 @@ declare enum DrawerSize {
2126
2147
  }
2127
2148
 
2128
2149
  interface IDrawer {
2129
- children?: React$1.ReactNode;
2150
+ children?: React__default.ReactNode;
2130
2151
  size?: DrawerSize;
2131
2152
  }
2132
2153
 
2133
- declare const Drawer: ({ children, size }: IDrawer) => React$1.ReactPortal;
2154
+ declare const Drawer: {
2155
+ ({ children, size }: IDrawer): React$1.ReactPortal;
2156
+ Header: () => react_jsx_runtime.JSX.Element;
2157
+ };
2134
2158
 
2135
2159
  interface GridProps {
2136
2160
  children: React.ReactNode;
@@ -2168,20 +2192,20 @@ declare enum ModalSize {
2168
2192
  }
2169
2193
 
2170
2194
  interface IModal {
2171
- children?: React$1.ReactNode;
2195
+ children?: React__default.ReactNode;
2172
2196
  title?: string;
2173
2197
  size: ModalSize;
2174
2198
  }
2175
2199
 
2176
- declare const Modal: ({ children, size, title }: IModal) => React$1.ReactPortal;
2200
+ declare const Modal: ({ children, size, title }: IModal) => React__default.ReactPortal;
2177
2201
 
2178
2202
  interface IOverlay {
2179
- children?: React$1.ReactNode;
2180
- header?: React$1.ReactNode;
2181
- close: React$1.ReactNode;
2203
+ children?: React__default.ReactNode;
2204
+ header?: React__default.ReactNode;
2205
+ close: React__default.ReactNode;
2182
2206
  }
2183
2207
 
2184
- declare const Overlay: ({ children, header, close }: IOverlay) => React$1.ReactPortal;
2208
+ declare const Overlay: ({ children, header, close }: IOverlay) => React__default.ReactPortal;
2185
2209
 
2186
2210
  declare enum WaveType {
2187
2211
  ONE = "ONE",
@@ -2201,13 +2225,13 @@ interface IWave {
2201
2225
 
2202
2226
  interface ISurface extends PropsWithChildren {
2203
2227
  background: string;
2204
- withWave?: React$1.ReactElement<IWave>;
2228
+ withWave?: React__default.ReactElement<IWave>;
2205
2229
  }
2206
2230
 
2207
2231
  declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
2208
2232
 
2209
2233
  interface ISwipe {
2210
- children?: React$1.ReactNode;
2234
+ children?: React__default.ReactNode;
2211
2235
  }
2212
2236
  interface ISwipeable {
2213
2237
  url: string;
@@ -2217,8 +2241,8 @@ interface ISwipeable {
2217
2241
  declare global {
2218
2242
  namespace JSX {
2219
2243
  interface IntrinsicElements {
2220
- "swiper-container": React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>;
2221
- "swiper-slide": React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>;
2244
+ "swiper-container": React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>;
2245
+ "swiper-slide": React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>;
2222
2246
  }
2223
2247
  }
2224
2248
  }
@@ -2228,66 +2252,73 @@ declare function Swipeable({ url, height }: ISwipeable): react_jsx_runtime.JSX.E
2228
2252
  declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
2229
2253
 
2230
2254
  interface IBasicPage {
2231
- header: React$1.ReactElement;
2232
- content: React$1.ReactElement | React$1.ReactElement[];
2233
- footer: React$1.ReactElement;
2255
+ header: React__default.ReactElement;
2256
+ content: React__default.ReactElement | React__default.ReactElement[];
2257
+ footer: React__default.ReactElement;
2234
2258
  }
2235
2259
 
2236
2260
  declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
2237
2261
 
2238
2262
  interface IAccountPage {
2239
- header: React$1.ReactElement;
2240
- content: React$1.ReactElement | React$1.ReactElement[];
2241
- footer: React$1.ReactElement;
2263
+ header: React__default.ReactElement;
2264
+ content: React__default.ReactElement | React__default.ReactElement[];
2265
+ footer: React__default.ReactElement;
2242
2266
  }
2243
2267
 
2244
2268
  declare const AccountPage: (props: IAccountPage) => react_jsx_runtime.JSX.Element;
2245
2269
 
2246
2270
  interface IDetailsPage {
2247
- header: React$1.ReactElement;
2248
- content: React$1.ReactElement | React$1.ReactElement[];
2249
- footer: React$1.ReactElement;
2271
+ header: React__default.ReactElement;
2272
+ content: React__default.ReactElement | React__default.ReactElement[];
2273
+ footer: React__default.ReactElement;
2250
2274
  }
2251
2275
 
2252
2276
  declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
2253
2277
 
2254
2278
  interface ISearchPage {
2255
- header: React$1.ReactElement;
2256
- content: React$1.ReactElement | React$1.ReactElement[];
2257
- footer: React$1.ReactElement;
2279
+ header: React__default.ReactElement;
2280
+ content: React__default.ReactElement | React__default.ReactElement[];
2281
+ footer: React__default.ReactElement;
2258
2282
  }
2259
2283
 
2260
2284
  declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
2261
2285
 
2262
2286
  interface IEmptySearchPage {
2263
- header: React$1.ReactElement;
2264
- content: React$1.ReactElement | React$1.ReactElement[];
2265
- footer: React$1.ReactElement;
2287
+ header: React__default.ReactElement;
2288
+ content: React__default.ReactElement | React__default.ReactElement[];
2289
+ footer: React__default.ReactElement;
2266
2290
  }
2267
2291
 
2268
2292
  declare const EmptySearchPage: (props: IEmptySearchPage) => react_jsx_runtime.JSX.Element;
2269
2293
 
2270
2294
  interface ISearchWithMapPage {
2271
- header: React$1.ReactElement;
2272
- content: React$1.ReactElement | React$1.ReactElement[];
2273
- footer: React$1.ReactElement;
2295
+ header: React__default.ReactElement;
2296
+ content: React__default.ReactElement | React__default.ReactElement[];
2297
+ footer: React__default.ReactElement;
2274
2298
  }
2275
2299
 
2276
2300
  declare const SearchWithMapPage: (props: ISearchWithMapPage) => react_jsx_runtime.JSX.Element;
2277
2301
 
2278
2302
  interface IShoppingCartPage {
2279
- header: React$1.ReactElement;
2280
- content: React$1.ReactElement | React$1.ReactElement[];
2281
- footer: React$1.ReactElement;
2303
+ header: React__default.ReactElement;
2304
+ content: React__default.ReactElement | React__default.ReactElement[];
2305
+ footer: React__default.ReactElement;
2282
2306
  }
2283
2307
 
2284
2308
  declare const ShoppingCartPage: (props: IShoppingCartPage) => react_jsx_runtime.JSX.Element;
2285
2309
 
2310
+ interface IHeaderlessPage {
2311
+ header: React__default.ReactElement;
2312
+ content: React__default.ReactElement | React__default.ReactElement[];
2313
+ }
2314
+
2315
+ declare const HeaderlessPage: (props: IHeaderlessPage) => react_jsx_runtime.JSX.Element;
2316
+
2286
2317
  interface BackdropContextType {
2287
2318
  isBackdropVisible: boolean;
2288
- setIsBackdropVisible: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2319
+ setIsBackdropVisible: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2289
2320
  }
2290
- declare const BackdropContext: React$1.Context<BackdropContextType>;
2321
+ declare const BackdropContext: React__default.Context<BackdropContextType>;
2291
2322
  interface IBackdropProvider extends PropsWithChildren {
2292
2323
  onClick?: () => void;
2293
2324
  }
@@ -2295,31 +2326,31 @@ declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => re
2295
2326
 
2296
2327
  interface BlurContextType {
2297
2328
  isBlurred: boolean;
2298
- setIsBlurred: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2329
+ setIsBlurred: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2299
2330
  }
2300
- declare const BlurContext: React$1.Context<BlurContextType>;
2331
+ declare const BlurContext: React__default.Context<BlurContextType>;
2301
2332
  interface IBlurProvider extends PropsWithChildren {
2302
2333
  }
2303
- declare const BlurProvider: React$1.FC<PropsWithChildren<{}>>;
2334
+ declare const BlurProvider: React__default.FC<PropsWithChildren<{}>>;
2304
2335
 
2305
2336
  interface DrawerContextType {
2306
2337
  isOpen: boolean;
2307
- setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2338
+ setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2308
2339
  }
2309
- declare const DrawerContext: React$1.Context<DrawerContextType>;
2340
+ declare const DrawerContext: React__default.Context<DrawerContextType>;
2310
2341
  interface IDrawerProvider extends PropsWithChildren {
2311
- drawer?: React$1.ReactNode;
2342
+ drawer?: React__default.ReactNode;
2312
2343
  size?: DrawerSize;
2313
2344
  }
2314
2345
  declare const DrawerProvider: ({ children, drawer, size }: IDrawerProvider) => react_jsx_runtime.JSX.Element;
2315
2346
 
2316
2347
  interface ModalContextType {
2317
2348
  isOpen: boolean;
2318
- setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2349
+ setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2319
2350
  }
2320
- declare const ModalContext: React$1.Context<ModalContextType>;
2351
+ declare const ModalContext: React__default.Context<ModalContextType>;
2321
2352
  interface IModalProvider extends PropsWithChildren {
2322
- modal?: React$1.ReactNode;
2353
+ modal?: React__default.ReactNode;
2323
2354
  size?: ModalSize;
2324
2355
  title?: string;
2325
2356
  }
@@ -2327,23 +2358,23 @@ declare const ModalProvider: ({ children, modal, size, title }: IModalProvider)
2327
2358
 
2328
2359
  interface OverlayContextType {
2329
2360
  isOpen: boolean;
2330
- setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2361
+ setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2331
2362
  headerHeight: number;
2332
- setHeaderHeight: React$1.Dispatch<React$1.SetStateAction<number>>;
2363
+ setHeaderHeight: React__default.Dispatch<React__default.SetStateAction<number>>;
2333
2364
  }
2334
- declare const OverlayContext: React$1.Context<OverlayContextType>;
2365
+ declare const OverlayContext: React__default.Context<OverlayContextType>;
2335
2366
  interface IOverlayProvider extends PropsWithChildren {
2336
- overlay?: React$1.ReactNode;
2337
- header?: React$1.ReactNode;
2338
- close?: React$1.ReactNode;
2367
+ overlay?: React__default.ReactNode;
2368
+ header?: React__default.ReactNode;
2369
+ close?: React__default.ReactNode;
2339
2370
  }
2340
2371
  declare const OverlayProvider: ({ children, header, close, overlay }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
2341
2372
 
2342
2373
  interface ProcessingContextType {
2343
2374
  isDone: boolean;
2344
- setIsDone: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2375
+ setIsDone: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2345
2376
  }
2346
- declare const ProcessingContext: React$1.Context<ProcessingContextType>;
2377
+ declare const ProcessingContext: React__default.Context<ProcessingContextType>;
2347
2378
  declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2348
2379
 
2349
2380
  declare const useIsProcessing: () => boolean;
@@ -2360,19 +2391,19 @@ interface GooglePlacesI {
2360
2391
  autocomplete: google.maps.places.AutocompleteService;
2361
2392
  autocompleteSessionToken: google.maps.places.AutocompleteSessionToken;
2362
2393
  }
2363
- declare const GooglePlacesContext: React$1.Context<AsyncResult<GooglePlacesI>>;
2394
+ declare const GooglePlacesContext: React__default.Context<AsyncResult<GooglePlacesI>>;
2364
2395
  declare const GooglePlacesProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2365
2396
 
2366
- declare const GoogleGeocoderContext: React$1.Context<AsyncResult<google.maps.Geocoder>>;
2397
+ declare const GoogleGeocoderContext: React__default.Context<AsyncResult<google.maps.Geocoder>>;
2367
2398
  declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2368
2399
 
2369
- declare const GoogleDirectionsServiceContext: React$1.Context<AsyncResult<google.maps.DirectionsService>>;
2400
+ declare const GoogleDirectionsServiceContext: React__default.Context<AsyncResult<google.maps.DirectionsService>>;
2370
2401
  declare const GoogleDirectionsServiceProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2371
2402
 
2372
- declare const GoogleDirectionsRendererContext: React$1.Context<AsyncResult<google.maps.DirectionsRenderer>>;
2403
+ declare const GoogleDirectionsRendererContext: React__default.Context<AsyncResult<google.maps.DirectionsRenderer>>;
2373
2404
  declare const GoogleDirectionsRendererProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2374
2405
 
2375
- declare const GoogleGeometryContext: React$1.Context<AsyncResult<google.maps.GeometryLibrary>>;
2406
+ declare const GoogleGeometryContext: React__default.Context<AsyncResult<google.maps.GeometryLibrary>>;
2376
2407
  declare const GoogleGeometryProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2377
2408
 
2378
2409
  declare const useIsGoogleProcessing: () => boolean;
@@ -2391,9 +2422,9 @@ declare const useGoogleMapId: () => string;
2391
2422
 
2392
2423
  declare const useGoogleApiKey: () => string;
2393
2424
 
2394
- declare const ThemeModeContext: React$1.Context<{
2425
+ declare const ThemeModeContext: React__default.Context<{
2395
2426
  themeMode: ThemeMode;
2396
- setThemeMode: React$1.Dispatch<React$1.SetStateAction<ThemeMode>>;
2427
+ setThemeMode: React__default.Dispatch<React__default.SetStateAction<ThemeMode>>;
2397
2428
  }>;
2398
2429
  interface PropsForThemeModeProvider extends PropsWithChildren {
2399
2430
  fromBrowser: boolean;
@@ -2402,18 +2433,18 @@ declare const ThemeModeProvider: FC<PropsForThemeModeProvider>;
2402
2433
 
2403
2434
  interface SearchContextType {
2404
2435
  active: number;
2405
- setActive: React$1.Dispatch<React$1.SetStateAction<number>>;
2436
+ setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
2406
2437
  }
2407
- declare const SearchContext: React$1.Context<SearchContextType>;
2438
+ declare const SearchContext: React__default.Context<SearchContextType>;
2408
2439
  interface ISearchProvider extends PropsWithChildren {
2409
2440
  }
2410
2441
  declare const SearchProvider: ({ children }: ISearchProvider) => react_jsx_runtime.JSX.Element;
2411
2442
 
2412
2443
  interface WizardContextType {
2413
2444
  active: number;
2414
- setActive: React$1.Dispatch<React$1.SetStateAction<number>>;
2445
+ setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
2415
2446
  }
2416
- declare const WizardContext: React$1.Context<WizardContextType>;
2447
+ declare const WizardContext: React__default.Context<WizardContextType>;
2417
2448
  interface IWizardProvider extends PropsWithChildren {
2418
2449
  onClick?: () => void;
2419
2450
  }
@@ -2421,20 +2452,20 @@ declare const WizardProvider: ({ children }: IWizardProvider) => react_jsx_runti
2421
2452
 
2422
2453
  interface WizardStepContextType {
2423
2454
  complete: boolean;
2424
- setComplete: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2455
+ setComplete: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2425
2456
  }
2426
- declare const WizardStepContext: React$1.Context<WizardStepContextType>;
2457
+ declare const WizardStepContext: React__default.Context<WizardStepContextType>;
2427
2458
  interface IWizardStepProvider extends PropsWithChildren {
2428
2459
  }
2429
2460
  declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
2430
2461
 
2431
2462
  interface InlineSelectOptionI {
2432
2463
  label: string;
2433
- withIcon?: React$1.ReactElement<IIcon>;
2464
+ withIcon?: React__default.ReactElement<IIcon>;
2434
2465
  }
2435
2466
  interface InlineSelectOptionIconI {
2436
2467
  label: string;
2437
- withIcon: React$1.ReactElement<IIcon>;
2468
+ withIcon: React__default.ReactElement<IIcon>;
2438
2469
  }
2439
2470
 
2440
2471
  declare const InlineSelectLabelAsOption: <T>(args: InlineSelectOptionI) => react_jsx_runtime.JSX.Element;
@@ -2452,4 +2483,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
2452
2483
 
2453
2484
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
2454
2485
 
2455
- export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, FormElement, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgressSteps, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type ISharedSectionHeader, type IShoppingCartPage, type IStatus, type IStatusList, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, SharedSectionHeaderAlternate, ShoppingCartPage, Status, StatusCompact, StatusContext, StatusList, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
2486
+ export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, FormElement, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgressSteps, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type ISharedSectionHeader, type IShoppingCartPage, type IStatus, type IStatusList, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, SharedSectionHeaderAlternate, ShoppingCartPage, Status, StatusCompact, StatusContext, StatusList, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };