@tactics/lokaal-loket 0.0.246 → 0.0.248

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as React$1 from 'react';
3
- import React__default, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
2
+ import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
4
3
  import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
5
4
  export { Color, ColorVariant, Radius, Spacing, ThemeConfigI, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
6
5
  import { Feature as Feature$1, Point, LineString } from 'geojson';
@@ -69,7 +68,7 @@ declare enum IconType {
69
68
  }
70
69
 
71
70
  interface IScaledIcon {
72
- icon: React__default.ReactElement<IIcon>;
71
+ icon: React$1.ReactElement<IIcon>;
73
72
  size: IconSize;
74
73
  }
75
74
  interface IIcon {
@@ -78,7 +77,7 @@ interface IIcon {
78
77
  }
79
78
 
80
79
  interface ILabeledIcon {
81
- withIconBefore: React__default.ReactElement<IIcon>;
80
+ withIconBefore: React$1.ReactElement<IIcon>;
82
81
  label: string;
83
82
  }
84
83
 
@@ -180,7 +179,7 @@ interface IFigure {
180
179
  screenReaderText: string;
181
180
  }
182
181
  interface IScaledFigure {
183
- figure: React__default.ReactElement<IFigure>;
182
+ figure: React$1.ReactElement<IFigure>;
184
183
  size: FigureSize;
185
184
  }
186
185
 
@@ -194,7 +193,7 @@ declare enum FramePadding {
194
193
  }
195
194
 
196
195
  interface IFrame {
197
- around: React__default.ReactElement<IIcon | IFigure>;
196
+ around: React$1.ReactElement<IIcon | IFigure>;
198
197
  split?: string | false;
199
198
  background?: string;
200
199
  padding?: FramePadding;
@@ -203,7 +202,7 @@ interface IFrame {
203
202
 
204
203
  interface IBadge {
205
204
  type: BadgeType;
206
- figure: React__default.ReactElement<IFigure>;
205
+ figure: React$1.ReactElement<IFigure>;
207
206
  size?: BadgeSize;
208
207
  }
209
208
 
@@ -238,7 +237,7 @@ interface ILogoBase {
238
237
  ariaLabel: string;
239
238
  alt: string;
240
239
  size: LogoSize;
241
- children?: React__default.ReactNode | React__default.ReactNode[];
240
+ children?: React$1.ReactNode | React$1.ReactNode[];
242
241
  }
243
242
  interface ILogoLoad extends ILogoBase {
244
243
  srcset?: ILogoSrc;
@@ -248,7 +247,7 @@ interface ILogo extends ILogoLoad {
248
247
 
249
248
  interface IBrand {
250
249
  ariaLabel: string;
251
- logo: React__default.ReactElement<ILogo>;
250
+ logo: React$1.ReactElement<ILogo>;
252
251
  name: string;
253
252
  }
254
253
 
@@ -268,19 +267,19 @@ interface ILink {
268
267
  id: string;
269
268
  title: string;
270
269
  href: string;
271
- onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
270
+ onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
272
271
  ariaLabel: string;
273
272
  children?: string;
274
273
  context?: LinkContext;
275
- withIconBefore?: React__default.ReactElement<IIcon>;
276
- withIconAfter?: React__default.ReactElement<IIcon>;
277
- target?: React__default.HTMLAttributeAnchorTarget;
274
+ withIconBefore?: React$1.ReactElement<IIcon>;
275
+ withIconAfter?: React$1.ReactElement<IIcon>;
276
+ target?: React$1.HTMLAttributeAnchorTarget;
278
277
  }
279
278
 
280
279
  declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
281
280
 
282
281
  interface IBreadcrumb {
283
- crumbs: React__default.ReactElement<ILink>[];
282
+ crumbs: React$1.ReactElement<ILink>[];
284
283
  currentPage: string;
285
284
  }
286
285
 
@@ -302,7 +301,7 @@ declare enum ButtonType {
302
301
  LINK = "LINK"
303
302
  }
304
303
 
305
- type ClickHandler$1 = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement> & React__default.KeyboardEventHandler<HTMLAnchorElement> & React__default.KeyboardEventHandler<HTMLButtonElement>;
304
+ type ClickHandler$1 = React$1.MouseEventHandler<HTMLAnchorElement> & React$1.MouseEventHandler<HTMLButtonElement> & React$1.KeyboardEventHandler<HTMLAnchorElement> & React$1.KeyboardEventHandler<HTMLButtonElement>;
306
305
  interface IButtonMinimal {
307
306
  id?: string;
308
307
  title: string;
@@ -316,14 +315,14 @@ interface IButton {
316
315
  ariaLabel: string;
317
316
  onClick?: ClickHandler$1;
318
317
  children?: string;
319
- withIconBefore?: React__default.ReactElement<IIcon>;
320
- withIconAfter?: React__default.ReactElement<IIcon>;
318
+ withIconBefore?: React$1.ReactElement<IIcon>;
319
+ withIconAfter?: React$1.ReactElement<IIcon>;
321
320
  type?: ButtonType;
322
321
  context?: ButtonContext;
323
322
  href?: string;
324
323
  }
325
324
 
326
- declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLButtonElement>>;
325
+ declare const Button: React$1.ForwardRefExoticComponent<IButton & React$1.RefAttributes<HTMLButtonElement>>;
327
326
 
328
327
  declare enum CheckboxContext {
329
328
  STANDARD = "STANDARD",
@@ -332,7 +331,7 @@ declare enum CheckboxContext {
332
331
  }
333
332
 
334
333
  interface ICheckboxBase {
335
- onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
334
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
336
335
  value: string;
337
336
  ariaLabel?: string;
338
337
  label: string;
@@ -353,14 +352,14 @@ declare enum ChoiceContext {
353
352
  }
354
353
 
355
354
  interface IChoiceBase {
356
- onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
355
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
357
356
  value: string;
358
357
  ariaLabel?: string;
359
358
  label: string;
360
359
  name: string;
361
360
  checked?: boolean;
362
361
  defaultChecked?: boolean;
363
- icon: React__default.ReactElement<IIcon | IFigure>;
362
+ icon: React$1.ReactElement<IIcon | IFigure>;
364
363
  }
365
364
  interface IChoice extends IChoiceBase {
366
365
  context?: ChoiceContext;
@@ -369,7 +368,7 @@ interface IChoice extends IChoiceBase {
369
368
  declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IChoice) => react_jsx_runtime.JSX.Element;
370
369
 
371
370
  interface IFeature {
372
- withIconBefore?: React__default.ReactElement<IIcon>;
371
+ withIconBefore?: React$1.ReactElement<IIcon>;
373
372
  label: string;
374
373
  }
375
374
 
@@ -418,8 +417,8 @@ declare enum InformationBackground {
418
417
  }
419
418
 
420
419
  interface IInformation {
421
- text: React__default.ReactElement<IPlainText>;
422
- frame?: React__default.ReactElement<IFrame>;
420
+ text: React$1.ReactElement<IPlainText>;
421
+ frame?: React$1.ReactElement<IFrame>;
423
422
  variant?: InformationVariant;
424
423
  background?: InformationBackground;
425
424
  }
@@ -434,15 +433,15 @@ declare enum InputContext {
434
433
 
435
434
  interface InputChangeEvent {
436
435
  value: string;
437
- event: React__default.ChangeEvent<HTMLInputElement>;
436
+ event: React$1.ChangeEvent<HTMLInputElement>;
438
437
  }
439
438
  interface InputBlurEvent {
440
439
  value: string;
441
- event: React__default.FocusEvent<HTMLInputElement, Element>;
440
+ event: React$1.FocusEvent<HTMLInputElement, Element>;
442
441
  }
443
442
  interface InputFocusEvent {
444
443
  value: string;
445
- event: React__default.FocusEvent<HTMLInputElement, Element>;
444
+ event: React$1.FocusEvent<HTMLInputElement, Element>;
446
445
  }
447
446
  interface IInputBase {
448
447
  defaultValue?: string;
@@ -453,8 +452,8 @@ interface IInputBase {
453
452
  placeholder?: string;
454
453
  ariaLabel?: string;
455
454
  name: string;
456
- withIconBefore?: React__default.ReactElement<IIcon>;
457
- withIconAfter?: React__default.ReactElement<IIcon>;
455
+ withIconBefore?: React$1.ReactElement<IIcon>;
456
+ withIconAfter?: React$1.ReactElement<IIcon>;
458
457
  }
459
458
  interface IInput extends IInputBase {
460
459
  context?: InputContext;
@@ -481,12 +480,12 @@ declare enum ListType {
481
480
 
482
481
  interface IListBase {
483
482
  type?: ListType;
484
- children?: React__default.ReactNode;
483
+ children?: React$1.ReactNode;
485
484
  }
486
485
  interface IList extends IListBase {
487
486
  }
488
487
  interface IListItemBase {
489
- children?: React__default.ReactNode;
488
+ children?: React$1.ReactNode;
490
489
  }
491
490
  interface ListItemThemeableProps extends IListItemBase {
492
491
  }
@@ -511,14 +510,14 @@ declare enum PickContext {
511
510
  }
512
511
 
513
512
  interface IPickBase {
514
- onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
513
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
515
514
  value: string;
516
515
  ariaLabel?: string;
517
516
  label: string;
518
517
  name: string;
519
518
  checked?: boolean;
520
519
  defaultChecked?: boolean;
521
- icon: React__default.ReactElement<IIcon | IFigure>;
520
+ icon: React$1.ReactElement<IIcon | IFigure>;
522
521
  }
523
522
  interface IPick extends IPickBase {
524
523
  context?: PickContext;
@@ -528,7 +527,7 @@ declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked
528
527
 
529
528
  interface IPill {
530
529
  label: string;
531
- withIconBefore?: React__default.ReactElement<IIcon>;
530
+ withIconBefore?: React$1.ReactElement<IIcon>;
532
531
  }
533
532
 
534
533
  declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.Element;
@@ -556,7 +555,7 @@ declare enum RadioContext {
556
555
  }
557
556
 
558
557
  interface IRadioBase {
559
- onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
558
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
560
559
  value: string;
561
560
  ariaLabel?: string;
562
561
  label: string;
@@ -571,9 +570,9 @@ interface IRadio extends IRadioBase {
571
570
  declare const Radio: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, }: IRadio) => react_jsx_runtime.JSX.Element;
572
571
 
573
572
  interface IRecord {
574
- withIconBefore?: React__default.ReactElement<IIcon>;
573
+ withIconBefore?: React$1.ReactElement<IIcon>;
575
574
  label: string;
576
- value: string | React__default.ReactNode;
575
+ value: string | React$1.ReactNode;
577
576
  }
578
577
 
579
578
  declare const Record: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
@@ -598,7 +597,7 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
598
597
  declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
599
598
 
600
599
  interface ITerm {
601
- figure: React__default.ReactElement<IFigure>;
600
+ figure: React$1.ReactElement<IFigure>;
602
601
  label: string;
603
602
  description?: string;
604
603
  }
@@ -635,14 +634,14 @@ declare enum BigChoiceContext {
635
634
  }
636
635
 
637
636
  interface IBigChoiceBase {
638
- onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
637
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
639
638
  value: string;
640
639
  ariaLabel?: string;
641
640
  label: string;
642
641
  name: string;
643
642
  checked?: boolean;
644
643
  defaultChecked?: boolean;
645
- icon: React__default.ReactElement<IIcon | IFigure>;
644
+ icon: React$1.ReactElement<IIcon | IFigure>;
646
645
  }
647
646
  interface IBigChoice extends IBigChoiceBase {
648
647
  context?: BigChoiceContext;
@@ -657,14 +656,14 @@ declare enum BigPickContext {
657
656
  }
658
657
 
659
658
  interface IBigPickBase {
660
- onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
659
+ onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
661
660
  value: string;
662
661
  ariaLabel?: string;
663
662
  label: string;
664
663
  name: string;
665
664
  checked?: boolean;
666
665
  defaultChecked?: boolean;
667
- icon: React__default.ReactElement<IIcon | IFigure>;
666
+ icon: React$1.ReactElement<IIcon | IFigure>;
668
667
  }
669
668
  interface IBigPick extends IBigPickBase {
670
669
  context?: BigPickContext;
@@ -685,14 +684,14 @@ interface SelectFocusEvent<T> extends SelectEvent<T> {
685
684
  interface InlineSelectI<T> {
686
685
  options: T[];
687
686
  defaultIndex: number;
688
- optionToDisplay: (option: T) => React__default.ReactNode;
689
- optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
687
+ optionToDisplay: (option: T) => React$1.ReactNode;
688
+ optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
690
689
  onChange?: (e: SelectChangeEvent<T>) => void;
691
690
  }
692
691
 
693
692
  declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
694
693
 
695
- type SetState<T> = React__default.Dispatch<React__default.SetStateAction<T>>;
694
+ type SetState<T> = React$1.Dispatch<React$1.SetStateAction<T>>;
696
695
  interface AutoCompleteContextType<T> {
697
696
  input: string;
698
697
  setInput: SetState<string>;
@@ -709,12 +708,12 @@ interface AutocompleteI<T> {
709
708
  debounceTime: number;
710
709
  placeholder?: string;
711
710
  ariaLabel?: string;
712
- withIconBefore?: React__default.ReactElement<IIcon>;
713
- withIconAfter?: React__default.ReactElement<IIcon>;
711
+ withIconBefore?: React$1.ReactElement<IIcon>;
712
+ withIconAfter?: React$1.ReactElement<IIcon>;
714
713
  options: T[];
715
714
  optionDefault?: T;
716
- optionToDisplay: (option: T) => React__default.ReactNode;
717
- optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
715
+ optionToDisplay: (option: T) => React$1.ReactNode;
716
+ optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
718
717
  optionToInputValue: (option: T) => string;
719
718
  onSelected?: (e: AutocompleteSelectEvent<T>) => void;
720
719
  onInputChange?: (e: AutocompleteChangeEvent) => void;
@@ -727,8 +726,8 @@ interface AutocompleteInputI<T> {
727
726
  debounceTime: number;
728
727
  placeholder?: string;
729
728
  ariaLabel?: string;
730
- withIconBefore?: React__default.ReactElement<IIcon>;
731
- withIconAfter?: React__default.ReactElement<IIcon>;
729
+ withIconBefore?: React$1.ReactElement<IIcon>;
730
+ withIconAfter?: React$1.ReactElement<IIcon>;
732
731
  theme: IInputTheme;
733
732
  options: T[];
734
733
  optionToInputValue: (option: T) => string;
@@ -741,13 +740,13 @@ interface AutocompleteInputI<T> {
741
740
  interface AutocompleteOptionI<T> {
742
741
  label: string;
743
742
  withDetails?: string;
744
- withFigure?: React__default.ReactElement<IFigure> | React__default.ReactElement<IIcon>;
743
+ withFigure?: React$1.ReactElement<IFigure> | React$1.ReactElement<IIcon>;
745
744
  }
746
745
  interface AutocompleteOptionsI<T> {
747
746
  options: T[];
748
747
  optionDefault?: T;
749
- optionToDisplay: (option: T) => React__default.ReactNode;
750
- optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
748
+ optionToDisplay: (option: T) => React$1.ReactNode;
749
+ optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
751
750
  optionToInputValue: (option: T) => string;
752
751
  onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
753
752
  onSelected?: (e: AutocompleteSelectEvent<T>) => void;
@@ -764,11 +763,11 @@ interface AutocompleteChangeEvent {
764
763
  }
765
764
  interface AutocompleteBlurEvent {
766
765
  input: string;
767
- event: React__default.FocusEvent<HTMLInputElement>;
766
+ event: React$1.FocusEvent<HTMLInputElement>;
768
767
  }
769
768
  interface AutocompleteFocusEvent {
770
769
  input: string;
771
- event: React__default.FocusEvent<HTMLInputElement>;
770
+ event: React$1.FocusEvent<HTMLInputElement>;
772
771
  }
773
772
 
774
773
  interface AutocompleteInputHandle<T> {
@@ -790,13 +789,13 @@ interface LocationI<T> {
790
789
  name: string;
791
790
  placeholder?: string;
792
791
  ariaLabel?: string;
793
- withIconBefore?: React__default.ReactElement<IIcon>;
794
- withIconAfter?: React__default.ReactElement<IIcon>;
792
+ withIconBefore?: React$1.ReactElement<IIcon>;
793
+ withIconAfter?: React$1.ReactElement<IIcon>;
795
794
  debounceTime?: number;
796
795
  options: T[];
797
796
  optionDefault?: T;
798
- optionToDisplay: (option: T) => React__default.ReactNode;
799
- optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
797
+ optionToDisplay: (option: T) => React$1.ReactNode;
798
+ optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
800
799
  optionToInputValue: (option: T) => string;
801
800
  onSelected?: (e: AutocompleteSelectEvent<T>) => void;
802
801
  onInputChange?: (e: AutocompleteChangeEvent) => void;
@@ -823,13 +822,13 @@ interface NameI<T> {
823
822
  name: string;
824
823
  placeholder?: string;
825
824
  ariaLabel?: string;
826
- withIconBefore?: React__default.ReactElement<IIcon>;
827
- withIconAfter?: React__default.ReactElement<IIcon>;
825
+ withIconBefore?: React$1.ReactElement<IIcon>;
826
+ withIconAfter?: React$1.ReactElement<IIcon>;
828
827
  debounceTime?: number;
829
828
  options: T[];
830
829
  optionDefault?: T;
831
- optionToDisplay: (option: T) => React__default.ReactNode;
832
- optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
830
+ optionToDisplay: (option: T) => React$1.ReactNode;
831
+ optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
833
832
  optionToInputValue: (option: T) => string;
834
833
  onSelected?: (e: AutocompleteSelectEvent<T>) => void;
835
834
  onInputChange?: (e: AutocompleteChangeEvent) => void;
@@ -873,21 +872,21 @@ interface RouteI<T, D> {
873
872
  debounceTime?: number;
874
873
  originPlaceholder?: string;
875
874
  originAriaLabel?: string;
876
- originWithIconBefore?: React__default.ReactElement<IIcon>;
877
- originWithIconAfter?: React__default.ReactElement<IIcon>;
875
+ originWithIconBefore?: React$1.ReactElement<IIcon>;
876
+ originWithIconAfter?: React$1.ReactElement<IIcon>;
878
877
  destinationPlaceholder?: string;
879
878
  destinationAriaLabel?: string;
880
- destinationWithIconBefore?: React__default.ReactElement<IIcon>;
881
- destinationWithIconAfter?: React__default.ReactElement<IIcon>;
879
+ destinationWithIconBefore?: React$1.ReactElement<IIcon>;
880
+ destinationWithIconAfter?: React$1.ReactElement<IIcon>;
882
881
  originOptions: T[];
883
882
  originOptionDefault?: T;
884
- originOptionToDisplay: (option: T) => React__default.ReactNode;
885
- originOptionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
883
+ originOptionToDisplay: (option: T) => React$1.ReactNode;
884
+ originOptionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
886
885
  originOptionToInputValue: (option: T) => string;
887
886
  destinationOptions: D[];
888
887
  destinationOptionDefault?: D;
889
- destinationOptionToDisplay: (option: D) => React__default.ReactNode;
890
- destinationOptionToDisplayWhenSelected?: (option: D) => React__default.ReactNode;
888
+ destinationOptionToDisplay: (option: D) => React$1.ReactNode;
889
+ destinationOptionToDisplayWhenSelected?: (option: D) => React$1.ReactNode;
891
890
  destinationOptionToInputValue: (option: D) => string;
892
891
  onOriginSelected?: (e: AutocompleteSelectEvent<T>) => void;
893
892
  onOriginInputChange?: (e: AutocompleteChangeEvent) => void;
@@ -924,9 +923,9 @@ declare const FilterTag: ({ label, action }: IFilterTag) => react_jsx_runtime.JS
924
923
 
925
924
  interface IRouteLocation {
926
925
  onChange?: (value: routeLocation) => void;
927
- location: React__default.ReactElement;
926
+ location: React$1.ReactElement;
928
927
  locationLabel: string;
929
- route: React__default.ReactElement;
928
+ route: React$1.ReactElement;
930
929
  routeLabel: string;
931
930
  name: string;
932
931
  defaultChecked?: boolean;
@@ -937,13 +936,13 @@ type routeLocation = "route" | "location";
937
936
  declare const RouteLocation: (args: IRouteLocation) => react_jsx_runtime.JSX.Element;
938
937
 
939
938
  interface SwitchI {
940
- children: React__default.ReactElement<SwitchItemI>[];
941
- onChange?: (e: React__default.MouseEvent<HTMLDivElement>, value: string) => void;
939
+ children: React$1.ReactElement<SwitchItemI>[];
940
+ onChange?: (e: React$1.MouseEvent<HTMLDivElement>, value: string) => void;
942
941
  init: string;
943
942
  }
944
943
  interface SwitchItemI {
945
944
  label: string;
946
- content: React__default.ReactElement;
945
+ content: React$1.ReactElement;
947
946
  value: string;
948
947
  }
949
948
  interface SwitchItemContentI extends PropsWithChildren {
@@ -1029,15 +1028,15 @@ interface ICompactNavigation extends ICompactNavigationBase {
1029
1028
  }
1030
1029
  interface ICompactNavigationBase {
1031
1030
  toggleLabel: string;
1032
- children?: React__default.ReactNode;
1033
- footer?: React__default.ReactNode;
1031
+ children?: React$1.ReactNode;
1032
+ footer?: React$1.ReactNode;
1034
1033
  }
1035
1034
  interface ICompactNavigationItem {
1036
1035
  label: string;
1037
1036
  href: string;
1038
- onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
1037
+ onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
1039
1038
  isActive?: boolean;
1040
- icon: React__default.ReactElement<IIcon>;
1039
+ icon: React$1.ReactElement<IIcon>;
1041
1040
  }
1042
1041
 
1043
1042
  declare const CompactNavigation: {
@@ -1048,7 +1047,7 @@ declare const CompactNavigation: {
1048
1047
  interface ICompactFooter extends ICompactFooterBase {
1049
1048
  }
1050
1049
  interface ICompactFooterBase {
1051
- children?: React__default.ReactNode;
1050
+ children?: React$1.ReactNode;
1052
1051
  title?: string;
1053
1052
  description?: string;
1054
1053
  }
@@ -1056,16 +1055,16 @@ interface ICompactFooterBase {
1056
1055
  declare const CompactFooter: ({ children, title, description, }: ICompactFooter) => react_jsx_runtime.JSX.Element;
1057
1056
 
1058
1057
  interface IDetailsBase {
1059
- children?: React__default.ReactNode;
1058
+ children?: React$1.ReactNode;
1060
1059
  }
1061
1060
  interface IDetails extends IDetailsBase {
1062
1061
  }
1063
1062
  interface DetailsHeaderThemeableProps {
1064
1063
  title: string;
1065
- children?: React__default.ReactNode;
1064
+ children?: React$1.ReactNode;
1066
1065
  }
1067
1066
  interface DetailsContentThemeableProps {
1068
- children?: React__default.ReactNode;
1067
+ children?: React$1.ReactNode;
1069
1068
  }
1070
1069
 
1071
1070
  declare const Details: {
@@ -1075,7 +1074,7 @@ declare const Details: {
1075
1074
  };
1076
1075
 
1077
1076
  interface IFaqBase {
1078
- children?: React__default.ReactNode;
1077
+ children?: React$1.ReactNode;
1079
1078
  }
1080
1079
  interface IFaq extends IFaqBase {
1081
1080
  }
@@ -1083,7 +1082,7 @@ interface FaqHeaderThemeableProps {
1083
1082
  title: string;
1084
1083
  }
1085
1084
  interface FaqContentThemeableProps {
1086
- children?: React__default.ReactNode;
1085
+ children?: React$1.ReactNode;
1087
1086
  }
1088
1087
 
1089
1088
  declare const Faq: {
@@ -1093,19 +1092,19 @@ declare const Faq: {
1093
1092
  };
1094
1093
 
1095
1094
  interface ISelectBox {
1096
- children: React__default.ReactNode;
1095
+ children: React$1.ReactNode;
1097
1096
  }
1098
1097
  interface ISelectBoxMenuItem {
1099
- figure: React__default.ReactElement<IFigure>;
1098
+ figure: React$1.ReactElement<IFigure>;
1100
1099
  label: string;
1101
1100
  action: () => void;
1102
1101
  }
1103
1102
  interface ISelectBoxSelect {
1104
- figure: React__default.ReactElement<IFigure>;
1103
+ figure: React$1.ReactElement<IFigure>;
1105
1104
  label: string;
1106
1105
  }
1107
1106
  interface ISelectBoxMenu {
1108
- children: React__default.ReactNode;
1107
+ children: React$1.ReactNode;
1109
1108
  }
1110
1109
 
1111
1110
  declare const SelectBox: {
@@ -1116,7 +1115,7 @@ declare const SelectBox: {
1116
1115
  };
1117
1116
 
1118
1117
  interface ICategoryLink {
1119
- figure: React__default.ReactElement<IFigure>;
1118
+ figure: React$1.ReactElement<IFigure>;
1120
1119
  title: string;
1121
1120
  description: string;
1122
1121
  label: string;
@@ -1140,7 +1139,7 @@ interface IResultHeading {
1140
1139
  declare const ResultHeading: ({ title, amount, actions }: IResultHeading) => react_jsx_runtime.JSX.Element;
1141
1140
 
1142
1141
  interface IFeatures {
1143
- children: React__default.ReactElement<IFeature> | React__default.ReactElement<IFeature>[];
1142
+ children: React$1.ReactElement<IFeature> | React$1.ReactElement<IFeature>[];
1144
1143
  }
1145
1144
 
1146
1145
  declare const Features: ({ children }: IFeatures) => react_jsx_runtime.JSX.Element;
@@ -1187,15 +1186,15 @@ declare const DaySelect: ({ onChange, monLabel, tueLabel, wedLabel, thuLabel, fr
1187
1186
  interface INavigation extends INavigationBase {
1188
1187
  }
1189
1188
  interface INavigationBase {
1190
- children?: React__default.ReactNode;
1191
- logo: React__default.ReactNode;
1189
+ children?: React$1.ReactNode;
1190
+ logo: React$1.ReactNode;
1192
1191
  }
1193
1192
  interface INavigationItem {
1194
1193
  label: string;
1195
1194
  href: string;
1196
- onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
1195
+ onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
1197
1196
  isActive?: boolean;
1198
- icon: React__default.ReactElement<IIcon>;
1197
+ icon: React$1.ReactElement<IIcon>;
1199
1198
  }
1200
1199
 
1201
1200
  declare const Navigation: {
@@ -1209,12 +1208,12 @@ declare enum ItemType {
1209
1208
  }
1210
1209
 
1211
1210
  interface IProfileNavigation {
1212
- children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
1211
+ children?: React$1.ReactElement<ProfileNavigationItemThemeableProps> | React$1.ReactElement<ProfileNavigationItemThemeableProps>[];
1213
1212
  }
1214
1213
  interface ProfileNavigationThemeableProps {
1215
- children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
1214
+ children?: React$1.ReactElement<ProfileNavigationItemThemeableProps> | React$1.ReactElement<ProfileNavigationItemThemeableProps>[];
1216
1215
  }
1217
- type ClickHandler = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement>;
1216
+ type ClickHandler = React$1.MouseEventHandler<HTMLAnchorElement> & React$1.MouseEventHandler<HTMLButtonElement>;
1218
1217
  interface ProfileNavigationItemThemeableProps {
1219
1218
  label: string;
1220
1219
  icon: IconType;
@@ -1231,7 +1230,7 @@ declare const ProfileNavigation: {
1231
1230
  };
1232
1231
 
1233
1232
  interface IRecords {
1234
- children: React__default.ReactElement<IRecord> | React__default.ReactElement<IRecord>[];
1233
+ children: React$1.ReactElement<IRecord> | React$1.ReactElement<IRecord>[];
1235
1234
  }
1236
1235
 
1237
1236
  declare const Records: ({ children }: IRecords) => react_jsx_runtime.JSX.Element;
@@ -1246,11 +1245,11 @@ declare const StatusList: ({ children, withCount }: IStatusList) => react_jsx_ru
1246
1245
  interface ITopNavigation extends ITopNavigationBase {
1247
1246
  }
1248
1247
  interface ITopNavigationBase {
1249
- children?: React__default.ReactNode;
1248
+ children?: React$1.ReactNode;
1250
1249
  }
1251
1250
  interface ITopNavigationItemBase {
1252
1251
  href: string;
1253
- onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
1252
+ onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
1254
1253
  label: string;
1255
1254
  icon: IconType;
1256
1255
  }
@@ -1263,20 +1262,20 @@ declare const TopNavigation: {
1263
1262
  interface IOnboarding {
1264
1263
  heading: string;
1265
1264
  content: string;
1266
- cta: React__default.ReactElement;
1267
- figure: React__default.ReactElement<IFigure>;
1268
- onClick?: (e: React__default.MouseEvent<HTMLButtonElement>) => void;
1265
+ cta: React$1.ReactElement;
1266
+ figure: React$1.ReactElement<IFigure>;
1267
+ onClick?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
1269
1268
  }
1270
1269
  interface IOnboardingButton extends IButtonMinimal {
1271
1270
  }
1272
1271
 
1273
- declare const OnboardingButton: React__default.ForwardRefExoticComponent<IOnboardingButton & React__default.RefAttributes<HTMLButtonElement>>;
1272
+ declare const OnboardingButton: React$1.ForwardRefExoticComponent<IOnboardingButton & React$1.RefAttributes<HTMLButtonElement>>;
1274
1273
  declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
1275
1274
 
1276
1275
  interface IQuickSearch {
1277
1276
  heading: string;
1278
- content: React__default.ReactNode;
1279
- action: React__default.ReactNode;
1277
+ content: React$1.ReactNode;
1278
+ action: React$1.ReactNode;
1280
1279
  }
1281
1280
 
1282
1281
  declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
@@ -1304,7 +1303,7 @@ declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_ru
1304
1303
 
1305
1304
  interface ICta {
1306
1305
  label: string;
1307
- action: React__default.ReactElement<IButton>;
1306
+ action: React$1.ReactElement<IButton>;
1308
1307
  }
1309
1308
 
1310
1309
  declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
@@ -1331,7 +1330,7 @@ declare const CurrentLocation: ({ label, action, size }: ICurrentLocation) => re
1331
1330
  interface IFooterNavigation extends IFooterNavigationBase {
1332
1331
  }
1333
1332
  interface IFooterNavigationBase {
1334
- children?: React__default.ReactNode;
1333
+ children?: React$1.ReactNode;
1335
1334
  }
1336
1335
 
1337
1336
  declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
@@ -1352,40 +1351,40 @@ interface IBottomNavigationBase {
1352
1351
  declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
1353
1352
 
1354
1353
  interface IHeaderMobile {
1355
- profileNavigation: React__default.ReactNode;
1356
- compactNavigation: React__default.ReactNode;
1354
+ profileNavigation: React$1.ReactNode;
1355
+ compactNavigation: React$1.ReactNode;
1357
1356
  }
1358
1357
  interface IHeaderTop {
1359
- brand: React__default.ReactNode;
1360
- topNavigation: React__default.ReactNode;
1358
+ brand: React$1.ReactNode;
1359
+ topNavigation: React$1.ReactNode;
1361
1360
  }
1362
1361
  interface IHeaderBottom extends IHeaderMobile {
1363
- navigation: React__default.ReactNode;
1364
- brand: React__default.ReactNode;
1362
+ navigation: React$1.ReactNode;
1363
+ brand: React$1.ReactNode;
1365
1364
  stickOnScroll: boolean;
1366
1365
  }
1367
1366
  interface IHeaderAlternate extends IHeaderMobile {
1368
- navigation: React__default.ReactNode;
1369
- brand: React__default.ReactNode;
1367
+ navigation: React$1.ReactNode;
1368
+ brand: React$1.ReactNode;
1370
1369
  }
1371
1370
 
1372
1371
  interface HeaderContextType {
1373
1372
  isSticky: boolean;
1374
- setIsSticky: React__default.Dispatch<React__default.SetStateAction<boolean>>;
1373
+ setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1375
1374
  showLogo: boolean;
1376
- setShowLogo: React__default.Dispatch<React__default.SetStateAction<boolean>>;
1375
+ setShowLogo: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1377
1376
  }
1378
- declare const HeaderContext: React__default.Context<HeaderContextType>;
1377
+ declare const HeaderContext: React$1.Context<HeaderContextType>;
1379
1378
 
1380
1379
  declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
1381
1380
  declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
1382
1381
  declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
1383
1382
 
1384
1383
  interface IFooter {
1385
- top: React__default.ReactNode;
1386
- left: React__default.ReactNode;
1387
- right: React__default.ReactNode;
1388
- bottom: React__default.ReactNode;
1384
+ top: React$1.ReactNode;
1385
+ left: React$1.ReactNode;
1386
+ right: React$1.ReactNode;
1387
+ bottom: React$1.ReactNode;
1389
1388
  }
1390
1389
 
1391
1390
  declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
@@ -1402,7 +1401,7 @@ interface IPin {
1402
1401
  name: string;
1403
1402
  address: string;
1404
1403
  type: PointType;
1405
- overlay: React__default.ReactNode;
1404
+ overlay: React$1.ReactNode;
1406
1405
  }
1407
1406
  interface ILine {
1408
1407
  key: string;
@@ -1428,20 +1427,20 @@ interface IFailureMap {
1428
1427
  message: string;
1429
1428
  }
1430
1429
  interface IMapLegendLabel {
1431
- figure: React__default.ReactElement<IFigure>;
1430
+ figure: React$1.ReactElement<IFigure>;
1432
1431
  label: string;
1433
1432
  }
1434
1433
  interface IMapLegendItem {
1435
- pin: React__default.ReactElement<IPin>;
1434
+ pin: React$1.ReactElement<IPin>;
1436
1435
  label: string;
1437
1436
  }
1438
1437
  interface ILocationBasedMap {
1439
1438
  points?: IPoints;
1440
1439
  showLoader: boolean;
1441
- loader?: React__default.ReactNode;
1440
+ loader?: React$1.ReactNode;
1442
1441
  origin?: IOrigin;
1443
- legend?: React__default.ReactElement<IMapLegendItem>[];
1444
- legendToggle?: React__default.ReactElement<IMapLegendLabel>;
1442
+ legend?: React$1.ReactElement<IMapLegendItem>[];
1443
+ legendToggle?: React$1.ReactElement<IMapLegendLabel>;
1445
1444
  onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
1446
1445
  }
1447
1446
  interface IDirectionBasedMapBase {
@@ -1449,13 +1448,13 @@ interface IDirectionBasedMapBase {
1449
1448
  activeRoute: IRoute | null;
1450
1449
  points?: IPoints;
1451
1450
  showLoader: boolean;
1452
- loader?: React__default.ReactNode;
1451
+ loader?: React$1.ReactNode;
1453
1452
  origin?: IOrigin;
1454
1453
  destination?: IDestination;
1455
1454
  deviation: number;
1456
1455
  activeTravelMode: google.maps.TravelMode;
1457
- legend?: React__default.ReactElement<IMapLegendItem>[];
1458
- legendToggle?: React__default.ReactElement<IMapLegendLabel>;
1456
+ legend?: React$1.ReactElement<IMapLegendItem>[];
1457
+ legendToggle?: React$1.ReactElement<IMapLegendLabel>;
1459
1458
  onRouteChange?: (route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
1460
1459
  onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
1461
1460
  onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
@@ -1474,20 +1473,20 @@ declare const Map: {
1474
1473
  Direction: ({ routes, activeRoute, origin, destination, deviation, activeTravelMode, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, legend, legendToggle, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
1475
1474
  Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
1476
1475
  Loading: ({ loader }: {
1477
- loader: React__default.ReactNode;
1476
+ loader: React$1.ReactNode;
1478
1477
  }) => react_jsx_runtime.JSX.Element | null;
1479
1478
  };
1480
1479
 
1481
1480
  interface IWizard {
1482
- children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
1481
+ children: React$1.ReactElement<IWizardStep> | React$1.ReactElement<IWizardStep>[];
1483
1482
  }
1484
1483
  interface IWizardStep extends PropsWithChildren {
1485
- figure?: React__default.ReactElement<IFigure>;
1486
- controls?: React__default.ReactElement<IWizardControls>;
1484
+ figure?: React$1.ReactElement<IFigure>;
1485
+ controls?: React$1.ReactElement<IWizardControls>;
1487
1486
  }
1488
1487
  interface IWizardControls {
1489
- back?: React__default.ReactElement<IButton>;
1490
- next?: React__default.ReactElement<IButton>;
1488
+ back?: React$1.ReactElement<IButton>;
1489
+ next?: React$1.ReactElement<IButton>;
1491
1490
  }
1492
1491
 
1493
1492
  declare const WizardStep: ({ children, figure, controls }: IWizardStep) => react_jsx_runtime.JSX.Element;
@@ -1512,117 +1511,96 @@ interface HeadingArrangementBaseI {
1512
1511
  title: string;
1513
1512
  }
1514
1513
 
1515
- interface ISearchFilters {
1516
- compact: React__default.ReactElement<ISearchFiltersCompact>;
1517
- full: React__default.ReactElement<ISearchFiltersFull>;
1514
+ interface ISearchFiltersSharedActions {
1515
+ submit: React$1.ReactElement<IButton>;
1516
+ clear: React$1.ReactElement<IButton>;
1518
1517
  }
1519
- interface ISearchFiltersCompact {
1520
- icon: React__default.ReactElement<IIcon>;
1521
- label?: string;
1522
- heading: React__default.ReactElement<HeadingArrangementBaseI>;
1523
- filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
1524
- activeFilters: number;
1525
- close: React__default.ReactElement<CloseI>;
1526
- submit: React__default.ReactElement<ISearchFiltersCompactActionSubmit>;
1527
- clear?: React__default.ReactElement<ISearchFiltersCompactActionClear>;
1528
- }
1529
- interface ISearchFiltersFull {
1518
+ interface ISearchFiltersShared extends ISearchFiltersSharedActions {
1519
+ filters: React$1.ReactElement<ISearchFiltersItem>[];
1520
+ activeFilterCount: number;
1521
+ label: React$1.ReactElement<ISearchFiltersLabel>;
1522
+ }
1523
+ interface ISearchFilters extends ISearchFiltersShared {
1524
+ overlay: React$1.ReactElement<ISearchFiltersOverlay>;
1525
+ modal: React$1.ReactElement<ISearchFiltersModal>;
1526
+ }
1527
+ interface ISearchFiltersOverlay {
1528
+ heading: React$1.ReactElement<HeadingArrangementBaseI>;
1529
+ close: React$1.ReactElement<CloseI>;
1530
+ }
1531
+ interface ISearchFiltersModal {
1530
1532
  heading: string;
1533
+ }
1534
+ interface ISearchFiltersLabel {
1531
1535
  label?: string;
1532
1536
  description?: string;
1533
- icon: React__default.ReactElement<IIcon>;
1534
- filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
1535
- activeFilters: number;
1536
- submit: React__default.ReactElement<ISearchFiltersCompactActionSubmit>;
1537
- clear?: React__default.ReactElement<ISearchFiltersCompactActionClear>;
1537
+ icon: React$1.ReactElement<IIcon>;
1538
1538
  }
1539
- interface ISearchFiltersCompactOverlayItem {
1539
+ interface ISearchFiltersItem {
1540
1540
  label: string;
1541
- filter: React__default.ReactNode;
1541
+ filter: React$1.ReactNode;
1542
1542
  }
1543
- interface ISearchFiltersCompactActionSubmit {
1544
- label: string;
1545
- icon: React__default.ReactElement<IIcon>;
1546
- onSubmit: () => void;
1547
- }
1548
- interface ISearchFiltersCompactActionClear {
1549
- label: string;
1550
- icon: React__default.ReactElement<IIcon>;
1551
- onClear: () => void;
1552
- }
1553
-
1554
- declare const SearchFiltersMobile: ({ icon, label, heading, filters, activeFilters, close, clear, submit, }: ISearchFiltersCompact) => react_jsx_runtime.JSX.Element;
1555
1543
 
1556
- declare const SearchFiltersFull: ({ label, description, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
1544
+ declare const SearchFiltersLabel: ({ label, description, icon, }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
1557
1545
 
1558
- declare const SearchFiltersMobileOverlayItem: ({ label, filter, }: ISearchFiltersCompactOverlayItem) => null;
1546
+ declare const SearchFiltersItem: (props: ISearchFiltersItem) => null;
1559
1547
 
1560
- declare const SearchFiltersMobileActionSubmit: ({}: ISearchFiltersCompactActionSubmit) => null;
1548
+ declare const SearchFiltersOverlay: (props: ISearchFiltersOverlay) => null;
1561
1549
 
1562
- declare const SearchFiltersMobileActionClear: ({}: ISearchFiltersCompactActionClear) => null;
1550
+ declare const SearchFiltersModal: (props: ISearchFiltersModal) => null;
1563
1551
 
1564
- declare const SearchFilters: ({ compact, full }: ISearchFilters) => React$1.ReactElement<ISearchFiltersCompact, string | React$1.JSXElementConstructor<any>> | React$1.ReactElement<ISearchFiltersFull, string | React$1.JSXElementConstructor<any>>;
1552
+ declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay, }: ISearchFilters) => react_jsx_runtime.JSX.Element;
1565
1553
 
1566
- interface ISearchInputs {
1567
- compact: React__default.ReactElement<ISearchInputsCompact>;
1568
- full: React__default.ReactElement<ISearchInputsFull>;
1554
+ type SearchInputTypes = "location" | "route" | "name";
1555
+ interface ISearchInputsShared {
1556
+ location: React$1.ReactElement<ISearchInputsElement>;
1557
+ route: React$1.ReactElement<ISearchInputsElement>;
1558
+ name: React$1.ReactElement<ISearchInputsElement>;
1559
+ activeInput: SearchInputTypes;
1560
+ onChanged?: (active: SearchInputTypes) => void;
1561
+ submit: React$1.ReactElement<IButton>;
1569
1562
  }
1570
- interface ISearchInputsFull {
1571
- searchOn: "location" | "route" | "name";
1572
- location: React__default.ReactElement<ISearchInputsElement>;
1573
- route: React__default.ReactElement<ISearchInputsElement>;
1574
- name: React__default.ReactElement<ISearchInputsElement>;
1575
- onSearch: () => void;
1576
- onChanged: (active: "location" | "route" | "name") => void;
1563
+ interface ISearchInputs extends ISearchInputsShared {
1564
+ overlay: React$1.ReactElement<ISearchInputsOverlay>;
1577
1565
  }
1578
- interface ISearchInputsCompact {
1579
- searchOn: "location" | "route" | "name";
1580
- searchOnLabel: string;
1581
- searchOnDescription: string;
1582
- location: React__default.ReactElement<ISearchInputsElement>;
1583
- route: React__default.ReactElement<ISearchInputsElement>;
1584
- name: React__default.ReactElement<ISearchInputsElement>;
1585
- close: React__default.ReactElement<CloseI>;
1586
- submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
1587
- clear?: React__default.ReactElement<ISearchInputsCompactActionClear>;
1588
- onChanged: (active: "location" | "route" | "name") => void;
1566
+ interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
1567
+ heading: React$1.ReactElement<HeadingArrangementBaseI>;
1568
+ input: React$1.ReactElement<ISearchInputsOverlayInput>;
1569
+ close: React$1.ReactElement<CloseI>;
1589
1570
  }
1590
- interface ISearchInputsElement {
1591
- selected: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1592
- option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1593
- inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1594
- heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1595
- input: React__default.ReactElement<ISearchInputsItem>;
1596
- }
1597
- interface ISearchInputsItem {
1598
- label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1599
- input: React__default.ReactNode;
1571
+ interface ISearchInputsOverlayContentActions {
1572
+ clear?: React$1.ReactElement<IButton>;
1600
1573
  }
1601
- interface ISearchInputsCompactActionSubmit {
1574
+ interface ISearchInputsOverlayInput {
1602
1575
  label: string;
1603
- icon: React__default.ReactElement<IIcon>;
1604
- onSubmit: () => void;
1576
+ description: string;
1605
1577
  }
1606
- interface ISearchInputsCompactActionClear {
1607
- label: string;
1608
- icon: React__default.ReactElement<IIcon>;
1609
- onClear: () => void;
1578
+ interface ISearchInputsElement {
1579
+ selected: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1580
+ option: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1581
+ inputLabel: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1582
+ heading: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1583
+ input: React$1.ReactElement<ISearchInputsItem>;
1584
+ }
1585
+ interface ISearchInputsItem {
1586
+ label: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
1587
+ input: React$1.ReactNode;
1610
1588
  }
1611
1589
  interface ISearchInputsLabel {
1612
1590
  label: string;
1613
1591
  description?: string;
1614
- figure: React__default.ReactElement<IFigure>;
1592
+ figure: React$1.ReactElement<IFigure>;
1615
1593
  }
1616
1594
  interface ISearchInputsLabelWithIcon {
1617
1595
  label: string;
1618
1596
  description?: string;
1619
- icon: React__default.ReactElement<IIcon>;
1597
+ icon: React$1.ReactElement<IIcon>;
1620
1598
  prominent: boolean;
1621
1599
  }
1622
1600
 
1623
- declare const SearchInputsMobile: ({ location, route, name, clear, submit, close, searchOn, searchOnLabel, searchOnDescription, onChanged, }: ISearchInputsCompact) => react_jsx_runtime.JSX.Element;
1601
+ declare const SearchInputsOverlay: (props: ISearchInputsOverlay) => null;
1624
1602
 
1625
- declare const SearchInputsFull: ({ location, route, name, onSearch, searchOn, }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
1603
+ declare const SearchInputsOverlayInput: ({ label, description, }: ISearchInputsOverlayInput) => react_jsx_runtime.JSX.Element;
1626
1604
 
1627
1605
  declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
1628
1606
 
@@ -1630,22 +1608,18 @@ declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputs
1630
1608
 
1631
1609
  declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent, }: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
1632
1610
 
1633
- declare const SearchInputsMobileActionSubmit: ({}: ISearchInputsCompactActionSubmit) => null;
1634
-
1635
- declare const SearchInputsMobileActionClear: ({}: ISearchInputsCompactActionClear) => null;
1636
-
1637
- declare const SearchInputs: ({ full, compact }: ISearchInputs) => React$1.ReactElement<ISearchInputsCompact, string | React$1.JSXElementConstructor<any>> | React$1.ReactElement<ISearchInputsFull, string | React$1.JSXElementConstructor<any>>;
1611
+ declare const SearchInputs: ({ location, route, name, overlay, onChanged, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
1638
1612
 
1639
1613
  interface ICard {
1640
- swipe?: React__default.ReactNode;
1641
- badge: React__default.ReactElement<IBadge>;
1614
+ swipe?: React$1.ReactNode;
1615
+ badge: React$1.ReactElement<IBadge>;
1642
1616
  title: string;
1643
1617
  subtitle?: string;
1644
- info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
1645
- labels: React__default.ReactElement<ILabel>[];
1646
- features?: React__default.ReactElement<IFeatures>;
1647
- action: React__default.ReactElement<IButton>;
1648
- favoriteAction?: React__default.ReactElement<IButton>;
1618
+ info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
1619
+ labels: React$1.ReactElement<ILabel>[];
1620
+ features?: React$1.ReactElement<IFeatures>;
1621
+ action: React$1.ReactElement<IButton>;
1622
+ favoriteAction?: React$1.ReactElement<IButton>;
1649
1623
  detailsAction?: () => void;
1650
1624
  detailsLabel?: string;
1651
1625
  }
@@ -1653,36 +1627,36 @@ interface ICard {
1653
1627
  declare const Card: ({ badge, swipe, title, subtitle, info, labels, features, action, detailsAction, detailsLabel, favoriteAction, }: ICard) => react_jsx_runtime.JSX.Element;
1654
1628
 
1655
1629
  interface IMapCard {
1656
- swipe?: React__default.ReactNode;
1657
- badge: React__default.ReactElement<IBadge>;
1630
+ swipe?: React$1.ReactNode;
1631
+ badge: React$1.ReactElement<IBadge>;
1658
1632
  title: string;
1659
- info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
1660
- action: React__default.ReactElement<IButton>;
1633
+ info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
1634
+ action: React$1.ReactElement<IButton>;
1661
1635
  }
1662
1636
 
1663
1637
  declare const MapCard: ({ badge, swipe, title, info, action }: IMapCard) => react_jsx_runtime.JSX.Element;
1664
1638
 
1665
1639
  interface IListCard {
1666
- badge: React__default.ReactElement<IBadge>;
1640
+ badge: React$1.ReactElement<IBadge>;
1667
1641
  title: string;
1668
1642
  subtitle?: string;
1669
- info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
1670
- labels: React__default.ReactElement<ILabel>[];
1671
- features?: React__default.ReactElement<IFeatures>;
1672
- actions: React__default.ReactElement<IButton>[] | React__default.ReactElement<IButton>;
1643
+ info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
1644
+ labels: React$1.ReactElement<ILabel>[];
1645
+ features?: React$1.ReactElement<IFeatures>;
1646
+ actions: React$1.ReactElement<IButton>[] | React$1.ReactElement<IButton>;
1673
1647
  }
1674
1648
 
1675
1649
  declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, }: IListCard) => react_jsx_runtime.JSX.Element;
1676
1650
 
1677
1651
  interface IFlyoutArrangementSplit {
1678
- top?: React__default.ReactElement;
1679
- left: React__default.ReactElement;
1680
- right: React__default.ReactElement;
1652
+ top?: React$1.ReactElement;
1653
+ left: React$1.ReactElement;
1654
+ right: React$1.ReactElement;
1681
1655
  compactAt: number;
1682
1656
  }
1683
1657
  interface IFlyoutArrangementFull {
1684
- top?: React__default.ReactElement;
1685
- content: React__default.ReactElement;
1658
+ top?: React$1.ReactElement;
1659
+ content: React$1.ReactElement;
1686
1660
  }
1687
1661
 
1688
1662
  declare const FlyoutArrangementSplit: (props: IFlyoutArrangementSplit) => react_jsx_runtime.JSX.Element;
@@ -1694,25 +1668,25 @@ declare const PageHeading: ({ title, label }: HeadingArrangementBaseI) => react_
1694
1668
 
1695
1669
  interface IHomeSectionCards {
1696
1670
  title: string;
1697
- cards: React__default.ReactElement<IInfoCard>[];
1671
+ cards: React$1.ReactElement<IInfoCard>[];
1698
1672
  }
1699
1673
 
1700
1674
  declare const HomeSectionCards: (props: IHomeSectionCards) => react_jsx_runtime.JSX.Element;
1701
1675
 
1702
1676
  interface IHomeSectionFaq {
1703
1677
  title: string;
1704
- content: React__default.ReactElement;
1705
- faqs: React__default.ReactElement<IFaq>[];
1678
+ content: React$1.ReactElement;
1679
+ faqs: React$1.ReactElement<IFaq>[];
1706
1680
  }
1707
1681
 
1708
1682
  declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
1709
1683
 
1710
1684
  interface IHomeSectionGettingStarted {
1711
1685
  title: string;
1712
- locationLink: React__default.ReactElement;
1713
- routeLink: React__default.ReactElement;
1714
- nameLink: React__default.ReactElement;
1715
- onBoarding: React__default.ReactElement;
1686
+ locationLink: React$1.ReactElement;
1687
+ routeLink: React$1.ReactElement;
1688
+ nameLink: React$1.ReactElement;
1689
+ onBoarding: React$1.ReactElement;
1716
1690
  imagePath: string;
1717
1691
  }
1718
1692
 
@@ -1720,15 +1694,15 @@ declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) =>
1720
1694
 
1721
1695
  interface IDetailsSectionHeader {
1722
1696
  title: string;
1723
- badge: React__default.ReactNode;
1724
- labels: React__default.ReactNode;
1725
- actions: React__default.ReactNode;
1697
+ badge: React$1.ReactNode;
1698
+ labels: React$1.ReactNode;
1699
+ actions: React$1.ReactNode;
1726
1700
  }
1727
1701
 
1728
1702
  declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
1729
1703
 
1730
1704
  interface IDetailsSectionBack {
1731
- link: React__default.ReactElement<ILink>;
1705
+ link: React$1.ReactElement<ILink>;
1732
1706
  }
1733
1707
 
1734
1708
  declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
@@ -1740,19 +1714,19 @@ interface IDetailsSectionGallery {
1740
1714
  declare const DetailsSectionGallery: (props: IDetailsSectionGallery) => react_jsx_runtime.JSX.Element;
1741
1715
 
1742
1716
  interface IDetailsSectionGeneral {
1743
- info: React__default.ReactNode;
1717
+ info: React$1.ReactNode;
1744
1718
  contactData: IContactData[];
1745
1719
  }
1746
1720
  interface IContactData {
1747
1721
  title: string;
1748
- data: React__default.ReactElement<ILabeledIcon>[];
1722
+ data: React$1.ReactElement<ILabeledIcon>[];
1749
1723
  }
1750
1724
 
1751
1725
  declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
1752
1726
 
1753
1727
  interface IDetailsSectionFacilities {
1754
1728
  title: string;
1755
- facilities: React__default.ReactElement<ITerm>[];
1729
+ facilities: React$1.ReactElement<ITerm>[];
1756
1730
  }
1757
1731
 
1758
1732
  declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
@@ -1760,25 +1734,25 @@ declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => re
1760
1734
  interface IDetailsSectionPrice {
1761
1735
  title: string;
1762
1736
  prices: IPriceData[];
1763
- info: React__default.ReactElement<IPlainText>;
1737
+ info: React$1.ReactElement<IPlainText>;
1764
1738
  }
1765
1739
  interface IPriceData {
1766
1740
  title: string;
1767
- data: React__default.ReactElement<ITable>;
1741
+ data: React$1.ReactElement<ITable>;
1768
1742
  }
1769
1743
 
1770
1744
  declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
1771
1745
 
1772
1746
  interface IDetailsSectionVacation {
1773
1747
  title: string;
1774
- vacations: React__default.ReactElement<ITable>;
1748
+ vacations: React$1.ReactElement<ITable>;
1775
1749
  }
1776
1750
 
1777
1751
  declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
1778
1752
 
1779
1753
  interface IDetailsSectionHours {
1780
1754
  title: string;
1781
- hours: React__default.ReactElement<ITable>;
1755
+ hours: React$1.ReactElement<ITable>;
1782
1756
  info?: string;
1783
1757
  }
1784
1758
 
@@ -1806,20 +1780,20 @@ declare const DetailsSectionTitle: (props: IDetailsSectionTitle) => react_jsx_ru
1806
1780
  interface IFavoritesSectionHeader {
1807
1781
  title: string;
1808
1782
  description: string;
1809
- figure: React__default.ReactElement<IFigure>;
1783
+ figure: React$1.ReactElement<IFigure>;
1810
1784
  }
1811
1785
 
1812
1786
  declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
1813
1787
 
1814
1788
  interface IFavoritesSectionEmpty {
1815
1789
  description: string;
1816
- action: React__default.ReactElement<IButton>;
1790
+ action: React$1.ReactElement<IButton>;
1817
1791
  }
1818
1792
 
1819
1793
  declare const FavoritesSectionEmpty: (props: IFavoritesSectionEmpty) => react_jsx_runtime.JSX.Element;
1820
1794
 
1821
1795
  interface IFavoritesSectionList {
1822
- cards: React__default.ReactElement<ICard>[];
1796
+ cards: React$1.ReactElement<ICard>[];
1823
1797
  }
1824
1798
 
1825
1799
  declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_runtime.JSX.Element;
@@ -1827,29 +1801,29 @@ declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_
1827
1801
  interface IFavoritesSectionConfirm {
1828
1802
  title: string;
1829
1803
  description: string;
1830
- location: React__default.ReactElement<IColoredBox>;
1831
- actions: React__default.ReactElement<IButton>[];
1804
+ location: React$1.ReactElement<IColoredBox>;
1805
+ actions: React$1.ReactElement<IButton>[];
1832
1806
  }
1833
1807
 
1834
1808
  declare const FavoritesSectionConfirm: (props: IFavoritesSectionConfirm) => react_jsx_runtime.JSX.Element;
1835
1809
 
1836
1810
  interface IOnboardingArrangementIntroduction {
1837
- top: React__default.ReactElement;
1838
- left: React__default.ReactElement;
1839
- right?: React__default.ReactElement;
1840
- action?: React__default.ReactElement;
1841
- image?: React__default.ReactElement;
1811
+ top: React$1.ReactElement;
1812
+ left: React$1.ReactElement;
1813
+ right?: React$1.ReactElement;
1814
+ action?: React$1.ReactElement;
1815
+ image?: React$1.ReactElement;
1842
1816
  }
1843
1817
  interface IOnboardingArrangementStep {
1844
- top: React__default.ReactElement;
1845
- left: React__default.ReactElement;
1846
- right?: React__default.ReactElement;
1847
- image?: React__default.ReactElement;
1818
+ top: React$1.ReactElement;
1819
+ left: React$1.ReactElement;
1820
+ right?: React$1.ReactElement;
1821
+ image?: React$1.ReactElement;
1848
1822
  }
1849
1823
  interface IOnboardingArrangementInformation {
1850
- top: React__default.ReactElement;
1851
- left: React__default.ReactElement;
1852
- image?: React__default.ReactElement;
1824
+ top: React$1.ReactElement;
1825
+ left: React$1.ReactElement;
1826
+ image?: React$1.ReactElement;
1853
1827
  }
1854
1828
 
1855
1829
  declare const OnboardingArrangementIntroduction: (props: IOnboardingArrangementIntroduction) => react_jsx_runtime.JSX.Element;
@@ -1857,41 +1831,41 @@ declare const OnboardingArrangementStep: (props: IOnboardingArrangementStep) =>
1857
1831
  declare const OnboardingArrangementInformation: (props: IOnboardingArrangementInformation) => react_jsx_runtime.JSX.Element;
1858
1832
 
1859
1833
  interface ISearchSectionFilters {
1860
- primary: React__default.ReactElement;
1861
- secondary: React__default.ReactElement | false;
1862
- secondary_active: React__default.ReactElement<IFilterTag>[];
1834
+ primary: React$1.ReactElement;
1835
+ secondary: React$1.ReactElement | false;
1836
+ secondary_active: React$1.ReactElement<IFilterTag>[];
1863
1837
  }
1864
1838
 
1865
1839
  declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_runtime.JSX.Element;
1866
1840
 
1867
1841
  interface IHomeSectionLeftSplit {
1868
1842
  title: string;
1869
- content: React__default.ReactElement;
1843
+ content: React$1.ReactElement;
1870
1844
  imagePath: string;
1871
1845
  }
1872
1846
 
1873
1847
  declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
1874
1848
 
1875
1849
  interface ISharedSectionHeader {
1876
- top?: React__default.ReactElement;
1877
- bottom: React__default.ReactElement;
1878
- filters?: React__default.ReactElement;
1850
+ top?: React$1.ReactElement;
1851
+ bottom: React$1.ReactElement;
1852
+ filters?: React$1.ReactElement;
1879
1853
  }
1880
1854
 
1881
1855
  declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
1882
1856
 
1883
1857
  interface ISharedSectionFooter {
1884
- content: React__default.ReactElement;
1858
+ content: React$1.ReactElement;
1885
1859
  }
1886
1860
 
1887
1861
  declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
1888
1862
 
1889
1863
  interface ISearchSectionResults {
1890
- header?: React__default.ReactElement;
1891
- content: React__default.ReactElement;
1864
+ header?: React$1.ReactElement;
1865
+ content: React$1.ReactElement;
1892
1866
  }
1893
1867
 
1894
- declare const SearchSectionResults: React__default.ForwardRefExoticComponent<ISearchSectionResults & React__default.RefAttributes<HTMLDivElement>>;
1868
+ declare const SearchSectionResults: React$1.ForwardRefExoticComponent<ISearchSectionResults & React$1.RefAttributes<HTMLDivElement>>;
1895
1869
 
1896
1870
  interface ISearchSectionEmpty {
1897
1871
  title: string;
@@ -1904,11 +1878,11 @@ interface IScrollableContentProps {
1904
1878
  scrollToTop?: () => void;
1905
1879
  }
1906
1880
  interface ISearchSectionResultsWithMap {
1907
- content: React__default.ReactElement<IScrollableContentProps>;
1908
- map?: React__default.ReactElement;
1881
+ content: React$1.ReactElement<IScrollableContentProps>;
1882
+ map?: React$1.ReactElement;
1909
1883
  }
1910
1884
 
1911
- declare const SearchSectionResultsWithMap: React__default.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React__default.RefAttributes<HTMLDivElement>>;
1885
+ declare const SearchSectionResultsWithMap: React$1.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React$1.RefAttributes<HTMLDivElement>>;
1912
1886
 
1913
1887
  declare enum AccordeonContext {
1914
1888
  OPEN = "OPEN",
@@ -1916,7 +1890,7 @@ declare enum AccordeonContext {
1916
1890
  }
1917
1891
 
1918
1892
  interface IAccordeonBase {
1919
- children?: React__default.ReactNode;
1893
+ children?: React$1.ReactNode;
1920
1894
  }
1921
1895
  interface IAccordeon extends IAccordeonBase {
1922
1896
  id?: string;
@@ -1939,7 +1913,7 @@ interface IBackdrop {
1939
1913
  onClick?: () => void;
1940
1914
  }
1941
1915
 
1942
- declare const Backdrop: ({ onClick }: IBackdrop) => React__default.ReactPortal;
1916
+ declare const Backdrop: ({ onClick }: IBackdrop) => React$1.ReactPortal;
1943
1917
 
1944
1918
  interface IBlur extends PropsWithChildren {
1945
1919
  }
@@ -1947,10 +1921,10 @@ interface IBlur extends PropsWithChildren {
1947
1921
  declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
1948
1922
 
1949
1923
  interface ICollapsable {
1950
- content: React__default.ReactNode;
1951
- additional: React__default.ReactNode;
1952
- withContentExpand: React__default.ReactNode;
1953
- withContentCollapse?: React__default.ReactNode;
1924
+ content: React$1.ReactNode;
1925
+ additional: React$1.ReactNode;
1926
+ withContentExpand: React$1.ReactNode;
1927
+ withContentCollapse?: React$1.ReactNode;
1954
1928
  }
1955
1929
 
1956
1930
  declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse, }: ICollapsable) => react_jsx_runtime.JSX.Element;
@@ -1963,11 +1937,11 @@ declare enum DrawerSize {
1963
1937
  }
1964
1938
 
1965
1939
  interface IDrawer {
1966
- children?: React__default.ReactNode;
1940
+ children?: React$1.ReactNode;
1967
1941
  size?: DrawerSize;
1968
1942
  }
1969
1943
 
1970
- declare const Drawer: ({ children, size }: IDrawer) => React__default.ReactPortal;
1944
+ declare const Drawer: ({ children, size }: IDrawer) => React$1.ReactPortal;
1971
1945
 
1972
1946
  interface GridProps {
1973
1947
  children: React.ReactNode;
@@ -2005,20 +1979,20 @@ declare enum ModalSize {
2005
1979
  }
2006
1980
 
2007
1981
  interface IModal {
2008
- children?: React__default.ReactNode;
1982
+ children?: React$1.ReactNode;
2009
1983
  title?: string;
2010
1984
  size: ModalSize;
2011
1985
  }
2012
1986
 
2013
- declare const Modal: ({ children, size, title }: IModal) => React__default.ReactPortal;
1987
+ declare const Modal: ({ children, size, title }: IModal) => React$1.ReactPortal;
2014
1988
 
2015
1989
  interface IOverlay {
2016
- children?: React__default.ReactNode;
2017
- header?: React__default.ReactNode;
2018
- close: React__default.ReactNode;
1990
+ children?: React$1.ReactNode;
1991
+ header?: React$1.ReactNode;
1992
+ close: React$1.ReactNode;
2019
1993
  }
2020
1994
 
2021
- declare const Overlay: ({ children, header, close }: IOverlay) => React__default.ReactPortal;
1995
+ declare const Overlay: ({ children, header, close }: IOverlay) => React$1.ReactPortal;
2022
1996
 
2023
1997
  declare enum WaveType {
2024
1998
  ONE = "ONE",
@@ -2038,13 +2012,13 @@ interface IWave {
2038
2012
 
2039
2013
  interface ISurface extends PropsWithChildren {
2040
2014
  background: string;
2041
- withWave?: React__default.ReactElement<IWave>;
2015
+ withWave?: React$1.ReactElement<IWave>;
2042
2016
  }
2043
2017
 
2044
2018
  declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
2045
2019
 
2046
2020
  interface ISwipe {
2047
- children?: React__default.ReactNode;
2021
+ children?: React$1.ReactNode;
2048
2022
  }
2049
2023
  interface ISwipeable {
2050
2024
  url: string;
@@ -2054,8 +2028,8 @@ interface ISwipeable {
2054
2028
  declare global {
2055
2029
  namespace JSX {
2056
2030
  interface IntrinsicElements {
2057
- "swiper-container": React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>;
2058
- "swiper-slide": React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>;
2031
+ "swiper-container": React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>;
2032
+ "swiper-slide": React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>;
2059
2033
  }
2060
2034
  }
2061
2035
  }
@@ -2065,50 +2039,50 @@ declare function Swipeable({ url, height }: ISwipeable): react_jsx_runtime.JSX.E
2065
2039
  declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
2066
2040
 
2067
2041
  interface IBasicPage {
2068
- header: React__default.ReactElement;
2069
- content: React__default.ReactElement | React__default.ReactElement[];
2070
- footer: React__default.ReactElement;
2042
+ header: React$1.ReactElement;
2043
+ content: React$1.ReactElement | React$1.ReactElement[];
2044
+ footer: React$1.ReactElement;
2071
2045
  }
2072
2046
 
2073
2047
  declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
2074
2048
 
2075
2049
  interface IDetailsPage {
2076
- header: React__default.ReactElement;
2077
- content: React__default.ReactElement | React__default.ReactElement[];
2078
- footer: React__default.ReactElement;
2050
+ header: React$1.ReactElement;
2051
+ content: React$1.ReactElement | React$1.ReactElement[];
2052
+ footer: React$1.ReactElement;
2079
2053
  }
2080
2054
 
2081
2055
  declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
2082
2056
 
2083
2057
  interface ISearchPage {
2084
- header: React__default.ReactElement;
2085
- content: React__default.ReactElement | React__default.ReactElement[];
2086
- footer: React__default.ReactElement;
2058
+ header: React$1.ReactElement;
2059
+ content: React$1.ReactElement | React$1.ReactElement[];
2060
+ footer: React$1.ReactElement;
2087
2061
  }
2088
2062
 
2089
2063
  declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
2090
2064
 
2091
2065
  interface IEmptySearchPage {
2092
- header: React__default.ReactElement;
2093
- content: React__default.ReactElement | React__default.ReactElement[];
2094
- footer: React__default.ReactElement;
2066
+ header: React$1.ReactElement;
2067
+ content: React$1.ReactElement | React$1.ReactElement[];
2068
+ footer: React$1.ReactElement;
2095
2069
  }
2096
2070
 
2097
2071
  declare const EmptySearchPage: (props: IEmptySearchPage) => react_jsx_runtime.JSX.Element;
2098
2072
 
2099
2073
  interface ISearchWithMapPage {
2100
- header: React__default.ReactElement;
2101
- content: React__default.ReactElement | React__default.ReactElement[];
2102
- footer: React__default.ReactElement;
2074
+ header: React$1.ReactElement;
2075
+ content: React$1.ReactElement | React$1.ReactElement[];
2076
+ footer: React$1.ReactElement;
2103
2077
  }
2104
2078
 
2105
2079
  declare const SearchWithMapPage: (props: ISearchWithMapPage) => react_jsx_runtime.JSX.Element;
2106
2080
 
2107
2081
  interface BackdropContextType {
2108
2082
  isBackdropVisible: boolean;
2109
- setIsBackdropVisible: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2083
+ setIsBackdropVisible: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2110
2084
  }
2111
- declare const BackdropContext: React__default.Context<BackdropContextType>;
2085
+ declare const BackdropContext: React$1.Context<BackdropContextType>;
2112
2086
  interface IBackdropProvider extends PropsWithChildren {
2113
2087
  onClick?: () => void;
2114
2088
  }
@@ -2116,31 +2090,31 @@ declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => re
2116
2090
 
2117
2091
  interface BlurContextType {
2118
2092
  isBlurred: boolean;
2119
- setIsBlurred: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2093
+ setIsBlurred: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2120
2094
  }
2121
- declare const BlurContext: React__default.Context<BlurContextType>;
2095
+ declare const BlurContext: React$1.Context<BlurContextType>;
2122
2096
  interface IBlurProvider extends PropsWithChildren {
2123
2097
  }
2124
- declare const BlurProvider: React__default.FC<PropsWithChildren<{}>>;
2098
+ declare const BlurProvider: React$1.FC<PropsWithChildren<{}>>;
2125
2099
 
2126
2100
  interface DrawerContextType {
2127
2101
  isOpen: boolean;
2128
- setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2102
+ setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2129
2103
  }
2130
- declare const DrawerContext: React__default.Context<DrawerContextType>;
2104
+ declare const DrawerContext: React$1.Context<DrawerContextType>;
2131
2105
  interface IDrawerProvider extends PropsWithChildren {
2132
- drawer?: React__default.ReactNode;
2106
+ drawer?: React$1.ReactNode;
2133
2107
  size?: DrawerSize;
2134
2108
  }
2135
2109
  declare const DrawerProvider: ({ children, drawer, size }: IDrawerProvider) => react_jsx_runtime.JSX.Element;
2136
2110
 
2137
2111
  interface ModalContextType {
2138
2112
  isOpen: boolean;
2139
- setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2113
+ setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2140
2114
  }
2141
- declare const ModalContext: React__default.Context<ModalContextType>;
2115
+ declare const ModalContext: React$1.Context<ModalContextType>;
2142
2116
  interface IModalProvider extends PropsWithChildren {
2143
- modal?: React__default.ReactNode;
2117
+ modal?: React$1.ReactNode;
2144
2118
  size?: ModalSize;
2145
2119
  title?: string;
2146
2120
  }
@@ -2148,23 +2122,23 @@ declare const ModalProvider: ({ children, modal, size, title, }: IModalProvider)
2148
2122
 
2149
2123
  interface OverlayContextType {
2150
2124
  isOpen: boolean;
2151
- setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2125
+ setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2152
2126
  headerHeight: number;
2153
- setHeaderHeight: React__default.Dispatch<React__default.SetStateAction<number>>;
2127
+ setHeaderHeight: React$1.Dispatch<React$1.SetStateAction<number>>;
2154
2128
  }
2155
- declare const OverlayContext: React__default.Context<OverlayContextType>;
2129
+ declare const OverlayContext: React$1.Context<OverlayContextType>;
2156
2130
  interface IOverlayProvider extends PropsWithChildren {
2157
- overlay?: React__default.ReactNode;
2158
- header?: React__default.ReactNode;
2159
- close?: React__default.ReactNode;
2131
+ overlay?: React$1.ReactNode;
2132
+ header?: React$1.ReactNode;
2133
+ close?: React$1.ReactNode;
2160
2134
  }
2161
2135
  declare const OverlayProvider: ({ children, header, close, overlay, }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
2162
2136
 
2163
2137
  interface ProcessingContextType {
2164
2138
  isDone: boolean;
2165
- setIsDone: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2139
+ setIsDone: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2166
2140
  }
2167
- declare const ProcessingContext: React__default.Context<ProcessingContextType>;
2141
+ declare const ProcessingContext: React$1.Context<ProcessingContextType>;
2168
2142
  declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2169
2143
 
2170
2144
  declare const useIsProcessing: () => boolean;
@@ -2181,19 +2155,19 @@ interface GooglePlacesI {
2181
2155
  autocomplete: google.maps.places.AutocompleteService;
2182
2156
  autocompleteSessionToken: google.maps.places.AutocompleteSessionToken;
2183
2157
  }
2184
- declare const GooglePlacesContext: React__default.Context<AsyncResult<GooglePlacesI>>;
2158
+ declare const GooglePlacesContext: React$1.Context<AsyncResult<GooglePlacesI>>;
2185
2159
  declare const GooglePlacesProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2186
2160
 
2187
- declare const GoogleGeocoderContext: React__default.Context<AsyncResult<google.maps.Geocoder>>;
2161
+ declare const GoogleGeocoderContext: React$1.Context<AsyncResult<google.maps.Geocoder>>;
2188
2162
  declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2189
2163
 
2190
- declare const GoogleDirectionsServiceContext: React__default.Context<AsyncResult<google.maps.DirectionsService>>;
2164
+ declare const GoogleDirectionsServiceContext: React$1.Context<AsyncResult<google.maps.DirectionsService>>;
2191
2165
  declare const GoogleDirectionsServiceProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2192
2166
 
2193
- declare const GoogleDirectionsRendererContext: React__default.Context<AsyncResult<google.maps.DirectionsRenderer>>;
2167
+ declare const GoogleDirectionsRendererContext: React$1.Context<AsyncResult<google.maps.DirectionsRenderer>>;
2194
2168
  declare const GoogleDirectionsRendererProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2195
2169
 
2196
- declare const GoogleGeometryContext: React__default.Context<AsyncResult<google.maps.GeometryLibrary>>;
2170
+ declare const GoogleGeometryContext: React$1.Context<AsyncResult<google.maps.GeometryLibrary>>;
2197
2171
  declare const GoogleGeometryProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2198
2172
 
2199
2173
  declare const useIsGoogleProcessing: () => boolean;
@@ -2212,9 +2186,9 @@ declare const useGoogleMapId: () => string;
2212
2186
 
2213
2187
  declare const useGoogleApiKey: () => string;
2214
2188
 
2215
- declare const ThemeModeContext: React__default.Context<{
2189
+ declare const ThemeModeContext: React$1.Context<{
2216
2190
  themeMode: ThemeMode;
2217
- setThemeMode: React__default.Dispatch<React__default.SetStateAction<ThemeMode>>;
2191
+ setThemeMode: React$1.Dispatch<React$1.SetStateAction<ThemeMode>>;
2218
2192
  }>;
2219
2193
  interface PropsForThemeModeProvider extends PropsWithChildren {
2220
2194
  fromBrowser: boolean;
@@ -2223,18 +2197,18 @@ declare const ThemeModeProvider: FC<PropsForThemeModeProvider>;
2223
2197
 
2224
2198
  interface SearchContextType {
2225
2199
  active: number;
2226
- setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
2200
+ setActive: React$1.Dispatch<React$1.SetStateAction<number>>;
2227
2201
  }
2228
- declare const SearchContext: React__default.Context<SearchContextType>;
2202
+ declare const SearchContext: React$1.Context<SearchContextType>;
2229
2203
  interface ISearchProvider extends PropsWithChildren {
2230
2204
  }
2231
2205
  declare const SearchProvider: ({ children }: ISearchProvider) => react_jsx_runtime.JSX.Element;
2232
2206
 
2233
2207
  interface WizardContextType {
2234
2208
  active: number;
2235
- setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
2209
+ setActive: React$1.Dispatch<React$1.SetStateAction<number>>;
2236
2210
  }
2237
- declare const WizardContext: React__default.Context<WizardContextType>;
2211
+ declare const WizardContext: React$1.Context<WizardContextType>;
2238
2212
  interface IWizardProvider extends PropsWithChildren {
2239
2213
  onClick?: () => void;
2240
2214
  }
@@ -2242,20 +2216,20 @@ declare const WizardProvider: ({ children }: IWizardProvider) => react_jsx_runti
2242
2216
 
2243
2217
  interface WizardStepContextType {
2244
2218
  complete: boolean;
2245
- setComplete: React__default.Dispatch<React__default.SetStateAction<boolean>>;
2219
+ setComplete: React$1.Dispatch<React$1.SetStateAction<boolean>>;
2246
2220
  }
2247
- declare const WizardStepContext: React__default.Context<WizardStepContextType>;
2221
+ declare const WizardStepContext: React$1.Context<WizardStepContextType>;
2248
2222
  interface IWizardStepProvider extends PropsWithChildren {
2249
2223
  }
2250
2224
  declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
2251
2225
 
2252
2226
  interface InlineSelectOptionI {
2253
2227
  label: string;
2254
- withIcon?: React__default.ReactElement<IIcon>;
2228
+ withIcon?: React$1.ReactElement<IIcon>;
2255
2229
  }
2256
2230
  interface InlineSelectOptionIconI {
2257
2231
  label: string;
2258
- withIcon: React__default.ReactElement<IIcon>;
2232
+ withIcon: React$1.ReactElement<IIcon>;
2259
2233
  }
2260
2234
 
2261
2235
  declare const InlineSelectLabelAsOption: <T>(args: InlineSelectOptionI) => react_jsx_runtime.JSX.Element;
@@ -2273,4 +2247,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
2273
2247
 
2274
2248
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
2275
2249
 
2276
- export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, 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, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, 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 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 IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersCompact, type ISearchFiltersCompactOverlayItem, type ISearchInputs, type ISearchInputsCompact, type ISearchInputsCompactActionClear, type ISearchInputsCompactActionSubmit, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, 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 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, 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, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeader, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, SearchContext, SearchFilters, SearchFiltersFull, SearchFiltersMobile, SearchFiltersMobileActionClear, SearchFiltersMobileActionSubmit, SearchFiltersMobileOverlayItem, SearchInputs, SearchInputsElement, SearchInputsFull, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsMobile, SearchInputsMobileActionClear, SearchInputsMobileActionSubmit, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, 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 };
2250
+ export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, 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, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, 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 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 IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, 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 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, 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, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeader, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, 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, 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 };