@harshit-wander/component-lib 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,631 @@
1
+ import * as react from 'react';
2
+ import { HTMLAttributes, FormHTMLAttributes, ReactNode, ElementType } from 'react';
3
+ import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import * as styled_components from 'styled-components';
5
+
6
+ interface Brand {
7
+ logo: string;
8
+ name: string;
9
+ href?: string;
10
+ }
11
+ interface BrandLogoProps extends HTMLAttributes<HTMLElement>, Brand {
12
+ }
13
+
14
+ declare const BrandLogo: react.ForwardRefExoticComponent<BrandLogoProps & react.RefAttributes<HTMLElement>>;
15
+
16
+ interface ContactFormValues {
17
+ name: string;
18
+ phone: string;
19
+ countryCode: string;
20
+ email: string;
21
+ destination: string;
22
+ }
23
+ interface ContactFormCountryCode {
24
+ code: string;
25
+ label?: string;
26
+ }
27
+ interface ContactFormDestination {
28
+ value: string;
29
+ label: string;
30
+ }
31
+ type ContactFormVariant = 'card' | 'plain';
32
+ type ContactFormHeaderVariant = 'tinted' | 'illustration' | 'none';
33
+ interface ContactFormProps extends Omit<FormHTMLAttributes<HTMLFormElement>, 'onSubmit'> {
34
+ variant?: ContactFormVariant | undefined;
35
+ headerVariant?: ContactFormHeaderVariant | undefined;
36
+ eyebrow?: string | undefined;
37
+ heading?: string | undefined;
38
+ submitLabel?: string | undefined;
39
+ headerIllustration?: ReactNode | undefined;
40
+ countryCodes?: ContactFormCountryCode[] | undefined;
41
+ destinations?: ContactFormDestination[] | undefined;
42
+ maxWidth?: number | string | undefined;
43
+ onSubmit?: ((values: ContactFormValues) => void) | undefined;
44
+ }
45
+
46
+ declare const ContactForm: react.ForwardRefExoticComponent<ContactFormProps & react.RefAttributes<HTMLFormElement>>;
47
+
48
+ interface DestinationCardProps extends HTMLAttributes<HTMLElement> {
49
+ image: string;
50
+ alt: string;
51
+ label: string;
52
+ href?: string | undefined;
53
+ }
54
+
55
+ declare const DestinationCard: react.ForwardRefExoticComponent<DestinationCardProps & react.RefAttributes<HTMLAnchorElement>>;
56
+
57
+ interface EventBannerProps extends HTMLAttributes<HTMLElement> {
58
+ image: string;
59
+ alt: string;
60
+ href?: string | undefined;
61
+ }
62
+
63
+ declare const EventBanner: react.ForwardRefExoticComponent<EventBannerProps & react.RefAttributes<HTMLDivElement>>;
64
+
65
+ interface ValueItem {
66
+ title: string;
67
+ bullets: string[];
68
+ }
69
+ interface ExpandableValueCardProps extends Omit<HTMLAttributes<HTMLElement>, 'onToggle'> {
70
+ serialNumber: number;
71
+ title: string;
72
+ bullets: string[];
73
+ defaultOpen?: boolean;
74
+ expanded?: boolean;
75
+ onToggle?: (next: boolean) => void;
76
+ }
77
+
78
+ declare const ExpandableValueCard: react.ForwardRefExoticComponent<ExpandableValueCardProps & react.RefAttributes<HTMLElement>>;
79
+
80
+ interface ExploreCardProps extends HTMLAttributes<HTMLElement> {
81
+ image: string;
82
+ alt: string;
83
+ label: string;
84
+ href?: string | undefined;
85
+ }
86
+
87
+ declare const ExploreCard: react.ForwardRefExoticComponent<ExploreCardProps & react.RefAttributes<HTMLAnchorElement>>;
88
+
89
+ interface FaqItem {
90
+ question: string;
91
+ bullets: string[];
92
+ }
93
+ interface FaqExpandableProps extends Omit<HTMLAttributes<HTMLElement>, 'onToggle'>, FaqItem {
94
+ defaultOpen?: boolean;
95
+ expanded?: boolean;
96
+ onToggle?: (next: boolean) => void;
97
+ }
98
+
99
+ declare const FaqExpandable: react.ForwardRefExoticComponent<FaqExpandableProps & react.RefAttributes<HTMLElement>>;
100
+
101
+ interface FeatureCardProps extends HTMLAttributes<HTMLElement> {
102
+ title: string;
103
+ description: string;
104
+ illustration: string;
105
+ illustrationAlt?: string | undefined;
106
+ }
107
+
108
+ declare const FeatureCard: react.ForwardRefExoticComponent<FeatureCardProps & react.RefAttributes<HTMLElement>>;
109
+
110
+ interface GalleryPhotoProps extends HTMLAttributes<HTMLElement> {
111
+ image: string;
112
+ alt: string;
113
+ destination: string;
114
+ }
115
+
116
+ declare const GalleryPhoto: react.ForwardRefExoticComponent<GalleryPhotoProps & react.RefAttributes<HTMLDivElement>>;
117
+
118
+ interface LocationItem {
119
+ location: string;
120
+ address: string;
121
+ logo?: string | ReactNode;
122
+ }
123
+ interface LocationCardProps extends HTMLAttributes<HTMLElement>, LocationItem {
124
+ }
125
+
126
+ declare const LocationCard: react.ForwardRefExoticComponent<LocationCardProps & react.RefAttributes<HTMLElement>>;
127
+
128
+ interface MonthTab {
129
+ id: string;
130
+ label: string;
131
+ }
132
+ interface MonthTabsProps extends HTMLAttributes<HTMLElement> {
133
+ months: MonthTab[];
134
+ activeMonthId: string;
135
+ onMonthChange: (id: string) => void;
136
+ }
137
+
138
+ declare const MonthTabs: react.ForwardRefExoticComponent<MonthTabsProps & react.RefAttributes<HTMLDivElement>>;
139
+
140
+ interface PackageCardProps extends HTMLAttributes<HTMLElement> {
141
+ image: string;
142
+ alt: string;
143
+ title: string;
144
+ currentPrice: string;
145
+ originalPrice?: string | undefined;
146
+ priceSuffix?: string | undefined;
147
+ duration: string;
148
+ location: string;
149
+ date: string;
150
+ href?: string | undefined;
151
+ }
152
+
153
+ declare const PackageCard: react.ForwardRefExoticComponent<PackageCardProps & react.RefAttributes<HTMLAnchorElement>>;
154
+
155
+ type SectionHeaderAlign = 'left' | 'center';
156
+ interface SectionHeaderProps extends HTMLAttributes<HTMLElement> {
157
+ heading: string;
158
+ subheading?: string | undefined;
159
+ align?: SectionHeaderAlign | undefined;
160
+ }
161
+
162
+ declare const SectionHeader: react.ForwardRefExoticComponent<SectionHeaderProps & react.RefAttributes<HTMLElement>>;
163
+
164
+ interface TeamSocialLink {
165
+ label: string;
166
+ href: string;
167
+ icon?: string | ReactNode;
168
+ }
169
+ interface TeamMember {
170
+ image: string;
171
+ name: string;
172
+ designation: string;
173
+ bio?: string;
174
+ socialLinks?: TeamSocialLink[];
175
+ }
176
+ interface TeamInfoCardProps extends HTMLAttributes<HTMLElement>, TeamMember {
177
+ }
178
+
179
+ declare const TeamInfoCard: react.ForwardRefExoticComponent<TeamInfoCardProps & react.RefAttributes<HTMLElement>>;
180
+
181
+ interface TestimonialCardProps extends HTMLAttributes<HTMLElement> {
182
+ thumbnail: string;
183
+ thumbnailAlt: string;
184
+ logo: string;
185
+ logoAlt: string;
186
+ caption: string;
187
+ videoHref?: string | undefined;
188
+ onPlayClick?: (() => void) | undefined;
189
+ }
190
+
191
+ declare const TestimonialCard: react.ForwardRefExoticComponent<TestimonialCardProps & react.RefAttributes<HTMLDivElement>>;
192
+
193
+ interface TripCategoryCardProps extends HTMLAttributes<HTMLElement> {
194
+ image: string;
195
+ alt: string;
196
+ destination: string;
197
+ startingPrice: string;
198
+ href?: string | undefined;
199
+ }
200
+
201
+ declare const TripCategoryCard: react.ForwardRefExoticComponent<TripCategoryCardProps & react.RefAttributes<HTMLAnchorElement>>;
202
+
203
+ interface Warrior {
204
+ icon: ReactNode | string;
205
+ name: string;
206
+ description: string;
207
+ }
208
+ interface WarriorCardProps extends HTMLAttributes<HTMLElement>, Warrior {
209
+ }
210
+
211
+ declare const WarriorCard: react.ForwardRefExoticComponent<WarriorCardProps & react.RefAttributes<HTMLElement>>;
212
+
213
+ interface BottomNavItem {
214
+ label: string;
215
+ icon: ReactNode;
216
+ href: string;
217
+ active?: boolean | undefined;
218
+ }
219
+ interface BottomNavProps extends HTMLAttributes<HTMLElement> {
220
+ items: BottomNavItem[];
221
+ }
222
+
223
+ declare const BottomNav: react.ForwardRefExoticComponent<BottomNavProps & react.RefAttributes<HTMLElement>>;
224
+
225
+ interface BrandsSectionProps extends HTMLAttributes<HTMLElement> {
226
+ heading: string;
227
+ subheading?: string;
228
+ brands: Brand[];
229
+ }
230
+
231
+ declare const BrandsSection: {
232
+ ({ heading, subheading, brands, ...rest }: BrandsSectionProps): react_jsx_runtime.JSX.Element;
233
+ displayName: string;
234
+ };
235
+
236
+ interface NavCategoryItem {
237
+ label: string;
238
+ href: string;
239
+ icon?: string | ReactNode;
240
+ }
241
+ interface NavCategory {
242
+ label: string;
243
+ href?: string;
244
+ items?: NavCategoryItem[];
245
+ badge?: ReactNode;
246
+ trailingIcon?: ReactNode;
247
+ }
248
+ interface MobileFooterLink {
249
+ label: string;
250
+ href: string;
251
+ }
252
+ interface MobileCta {
253
+ label: string;
254
+ href?: string;
255
+ onClick?: () => void;
256
+ }
257
+ interface CategoryNavbarProps extends HTMLAttributes<HTMLElement> {
258
+ logo: string | ReactNode;
259
+ logoHref?: string;
260
+ categories: NavCategory[];
261
+ searchHref?: string;
262
+ phoneNumber?: string | undefined;
263
+ LinkComponent?: ElementType | undefined;
264
+ defaultMobileOpen?: boolean;
265
+ mobileOpen?: boolean | undefined;
266
+ onMobileOpenChange?: (next: boolean) => void;
267
+ mobileFooterLinks?: MobileFooterLink[] | undefined;
268
+ mobileCta?: MobileCta | undefined;
269
+ }
270
+
271
+ declare const CategoryNavbar: react.ForwardRefExoticComponent<CategoryNavbarProps & react.RefAttributes<HTMLElement>>;
272
+
273
+ interface ContactSectionProps extends Omit<HTMLAttributes<HTMLElement>, 'onSubmit'> {
274
+ illustration: ReactNode;
275
+ eyebrow?: string | undefined;
276
+ heading?: string | undefined;
277
+ submitLabel?: string | undefined;
278
+ headerIllustration?: ReactNode | undefined;
279
+ countryCodes?: ContactFormCountryCode[] | undefined;
280
+ destinations?: ContactFormDestination[] | undefined;
281
+ onSubmit?: ((values: ContactFormValues) => void) | undefined;
282
+ }
283
+
284
+ declare const ContactSection: react.ForwardRefExoticComponent<ContactSectionProps & react.RefAttributes<HTMLElement>>;
285
+
286
+ interface CtaBannerCta {
287
+ label: string;
288
+ href?: string;
289
+ onClick?: () => void;
290
+ }
291
+ interface CtaBannerProps extends HTMLAttributes<HTMLElement> {
292
+ title: string;
293
+ subtitle?: string;
294
+ backgroundImage?: string;
295
+ backgroundColor?: string;
296
+ cta: CtaBannerCta;
297
+ }
298
+
299
+ declare const CtaBanner: react.ForwardRefExoticComponent<CtaBannerProps & react.RefAttributes<HTMLElement>>;
300
+
301
+ interface DestinationItem {
302
+ image: string;
303
+ alt: string;
304
+ label: string;
305
+ href?: string | undefined;
306
+ }
307
+ interface DestinationsSectionProps extends HTMLAttributes<HTMLElement> {
308
+ heading: string;
309
+ destinations: DestinationItem[];
310
+ }
311
+
312
+ declare const DestinationsSection: react.ForwardRefExoticComponent<DestinationsSectionProps & react.RefAttributes<HTMLElement>>;
313
+
314
+ interface EventCarouselItem {
315
+ image: string;
316
+ alt: string;
317
+ href?: string | undefined;
318
+ }
319
+ interface EventCarouselProps extends HTMLAttributes<HTMLElement> {
320
+ events: EventCarouselItem[];
321
+ }
322
+
323
+ declare const EventCarousel: react.ForwardRefExoticComponent<EventCarouselProps & react.RefAttributes<HTMLElement>>;
324
+
325
+ interface ExploreItem {
326
+ image: string;
327
+ alt: string;
328
+ label: string;
329
+ href?: string | undefined;
330
+ }
331
+ interface ExploreSectionProps extends HTMLAttributes<HTMLElement> {
332
+ heading: string;
333
+ items: ExploreItem[];
334
+ }
335
+
336
+ declare const ExploreSection: react.ForwardRefExoticComponent<ExploreSectionProps & react.RefAttributes<HTMLElement>>;
337
+
338
+ interface FaqSectionProps extends HTMLAttributes<HTMLElement> {
339
+ heading: string;
340
+ subheading?: string;
341
+ faqs: FaqItem[];
342
+ singleOpen?: boolean;
343
+ }
344
+
345
+ declare const FaqSection: {
346
+ ({ heading, subheading, faqs, singleOpen, ...rest }: FaqSectionProps): react_jsx_runtime.JSX.Element;
347
+ displayName: string;
348
+ };
349
+
350
+ interface FooterLink {
351
+ label: string;
352
+ href: string;
353
+ }
354
+ interface FooterColumn {
355
+ heading: string;
356
+ links: FooterLink[];
357
+ }
358
+ interface FooterSocialLink {
359
+ label: string;
360
+ href: string;
361
+ icon: ReactNode;
362
+ }
363
+ interface FooterContact {
364
+ websiteUrl?: string;
365
+ websiteLabel?: string;
366
+ email?: string;
367
+ phone?: string;
368
+ }
369
+ interface FooterProps extends HTMLAttributes<HTMLElement> {
370
+ columns: FooterColumn[];
371
+ companyName: string;
372
+ cin?: string | undefined;
373
+ address: string;
374
+ contact?: FooterContact;
375
+ socials?: FooterSocialLink[];
376
+ footerImage?: string;
377
+ footerImageAlt?: string;
378
+ copyright: string;
379
+ showScrollToTop?: boolean | undefined;
380
+ }
381
+
382
+ declare const Footer: react.ForwardRefExoticComponent<FooterProps & react.RefAttributes<HTMLElement>>;
383
+
384
+ interface GalleryPhotoData {
385
+ image: string;
386
+ alt: string;
387
+ destination: string;
388
+ }
389
+ interface GallerySectionProps extends HTMLAttributes<HTMLElement> {
390
+ heading: string;
391
+ subheading?: string;
392
+ photos: GalleryPhotoData[];
393
+ }
394
+
395
+ declare const GallerySection: react.ForwardRefExoticComponent<GallerySectionProps & react.RefAttributes<HTMLElement>>;
396
+
397
+ type HeroVariant = 'centered' | 'reviews';
398
+ interface HeroReview {
399
+ logo: string;
400
+ alt: string;
401
+ rating: number;
402
+ reviewCount: number;
403
+ }
404
+ interface HeroBase extends HTMLAttributes<HTMLElement> {
405
+ title: string;
406
+ subtitle?: string;
407
+ backgroundImage?: string;
408
+ backgroundColor?: string;
409
+ }
410
+ type HeroProps = (HeroBase & {
411
+ variant?: 'centered';
412
+ }) | (HeroBase & {
413
+ variant: 'reviews';
414
+ reviews: HeroReview[];
415
+ });
416
+
417
+ declare const Hero: react.ForwardRefExoticComponent<HeroProps & react.RefAttributes<HTMLElement>>;
418
+
419
+ interface NavLink {
420
+ label: string;
421
+ href: string;
422
+ badgeIcon?: ReactNode;
423
+ }
424
+ interface NavbarProps extends HTMLAttributes<HTMLElement> {
425
+ logo: string | ReactNode;
426
+ logoHref?: string;
427
+ links: NavLink[];
428
+ searchPlaceholder?: string;
429
+ searchHref?: string;
430
+ phoneNumber?: string | undefined;
431
+ phoneIcon?: ReactNode;
432
+ LinkComponent?: ElementType | undefined;
433
+ }
434
+
435
+ declare const Navbar: react.ForwardRefExoticComponent<NavbarProps & react.RefAttributes<HTMLElement>>;
436
+
437
+ interface OfficesSectionProps extends HTMLAttributes<HTMLElement> {
438
+ heading: string;
439
+ subheading?: string | undefined;
440
+ locations: LocationItem[];
441
+ }
442
+
443
+ declare const OfficesSection: {
444
+ ({ heading, subheading, locations, ...rest }: OfficesSectionProps): react_jsx_runtime.JSX.Element;
445
+ displayName: string;
446
+ };
447
+
448
+ interface PackageItem {
449
+ image: string;
450
+ alt: string;
451
+ title: string;
452
+ currentPrice: string;
453
+ originalPrice?: string | undefined;
454
+ priceSuffix?: string | undefined;
455
+ duration: string;
456
+ location: string;
457
+ date: string;
458
+ href?: string | undefined;
459
+ }
460
+ interface PackagesCarouselProps extends HTMLAttributes<HTMLElement> {
461
+ heading: string;
462
+ viewAllHref?: string | undefined;
463
+ viewAllLabel?: string | undefined;
464
+ months: MonthTab[];
465
+ activeMonthId: string;
466
+ onMonthChange: (id: string) => void;
467
+ packages: PackageItem[];
468
+ }
469
+
470
+ declare const PackagesCarousel: react.ForwardRefExoticComponent<PackagesCarouselProps & react.RefAttributes<HTMLElement>>;
471
+
472
+ interface TeamSectionProps extends HTMLAttributes<HTMLElement> {
473
+ heading: string;
474
+ subheading?: string;
475
+ members: TeamMember[];
476
+ }
477
+
478
+ declare const TeamSection: {
479
+ ({ heading, subheading, members, ...rest }: TeamSectionProps): react_jsx_runtime.JSX.Element;
480
+ displayName: string;
481
+ };
482
+
483
+ interface TestimonialItem {
484
+ thumbnail: string;
485
+ thumbnailAlt: string;
486
+ logo: string;
487
+ logoAlt: string;
488
+ caption: string;
489
+ videoHref?: string | undefined;
490
+ }
491
+ interface TestimonialsCarouselProps extends HTMLAttributes<HTMLElement> {
492
+ testimonials: TestimonialItem[];
493
+ defaultIndex?: number;
494
+ activeIndex?: number;
495
+ onActiveIndexChange?: (next: number) => void;
496
+ }
497
+
498
+ declare const TestimonialsCarousel: react.ForwardRefExoticComponent<TestimonialsCarouselProps & react.RefAttributes<HTMLElement>>;
499
+
500
+ type TextSectionAlign = 'left' | 'center';
501
+ interface TextSectionProps extends HTMLAttributes<HTMLElement> {
502
+ heading: string;
503
+ paragraphs: string[];
504
+ align?: TextSectionAlign | undefined;
505
+ }
506
+
507
+ declare const TextSection: react.ForwardRefExoticComponent<TextSectionProps & react.RefAttributes<HTMLElement>>;
508
+
509
+ interface TripsCategorySectionCta {
510
+ label: string;
511
+ href?: string;
512
+ onClick?: () => void;
513
+ }
514
+ interface TripsCategoryItem {
515
+ image: string;
516
+ alt: string;
517
+ destination: string;
518
+ startingPrice: string;
519
+ href?: string | undefined;
520
+ }
521
+ interface TripsCategorySectionProps extends HTMLAttributes<HTMLElement> {
522
+ title: string;
523
+ description: string;
524
+ cta: TripsCategorySectionCta;
525
+ poster: string;
526
+ videoSrc: string;
527
+ trips: TripsCategoryItem[];
528
+ }
529
+
530
+ declare const TripsCategorySection: react.ForwardRefExoticComponent<TripsCategorySectionProps & react.RefAttributes<HTMLElement>>;
531
+
532
+ interface ValuesSectionProps extends HTMLAttributes<HTMLElement> {
533
+ heading: string;
534
+ subheading?: string | undefined;
535
+ values: ValueItem[];
536
+ singleOpen?: boolean;
537
+ }
538
+
539
+ declare const ValuesSection: {
540
+ ({ heading, subheading, values, singleOpen, ...rest }: ValuesSectionProps): react_jsx_runtime.JSX.Element;
541
+ displayName: string;
542
+ };
543
+
544
+ interface WarriorsSectionProps extends HTMLAttributes<HTMLElement> {
545
+ heading: string;
546
+ subheading?: string;
547
+ warriors: Warrior[];
548
+ }
549
+
550
+ declare const WarriorsSection: {
551
+ ({ heading, subheading, warriors, ...rest }: WarriorsSectionProps): react_jsx_runtime.JSX.Element;
552
+ displayName: string;
553
+ };
554
+
555
+ interface WhyChooseFeature {
556
+ title: string;
557
+ description: string;
558
+ illustration: string;
559
+ illustrationAlt?: string | undefined;
560
+ }
561
+ interface WhyChooseSectionProps extends HTMLAttributes<HTMLElement> {
562
+ heading: string;
563
+ features: WhyChooseFeature[];
564
+ }
565
+
566
+ declare const WhyChooseSection: react.ForwardRefExoticComponent<WhyChooseSectionProps & react.RefAttributes<HTMLElement>>;
567
+
568
+ declare const theme: {
569
+ readonly typography: {
570
+ readonly sectionHeading: styled_components.RuleSet<object>;
571
+ readonly sectionSubheading: styled_components.RuleSet<object>;
572
+ readonly cardTitle: styled_components.RuleSet<object>;
573
+ readonly cardBody: styled_components.RuleSet<object>;
574
+ readonly cardLabel: styled_components.RuleSet<object>;
575
+ };
576
+ readonly layout: {
577
+ readonly sectionPadding: "32px 24px";
578
+ readonly cardPadding: "24px";
579
+ readonly gridGap: "24px";
580
+ readonly contentWidth: "760px";
581
+ readonly mobileBreakpoint: "768px";
582
+ };
583
+ readonly colors: {
584
+ readonly primary: "#01AFD1";
585
+ readonly primaryHover: "#0089A6";
586
+ readonly accent: "#FEE60B";
587
+ readonly accentHover: "#E6CF09";
588
+ readonly secondary: "#4A4A4A";
589
+ readonly secondaryHover: "#333333";
590
+ readonly danger: "#DC2626";
591
+ readonly text: "#4A4A4A";
592
+ readonly textMuted: "#848484";
593
+ readonly background: "#FFFFFF";
594
+ readonly surface: "#FFFFFF";
595
+ readonly border: "#E2E8F0";
596
+ };
597
+ readonly spacing: {
598
+ readonly xs: "4px";
599
+ readonly sm: "8px";
600
+ readonly md: "16px";
601
+ readonly lg: "24px";
602
+ readonly xl: "32px";
603
+ };
604
+ readonly radii: {
605
+ readonly sm: "4px";
606
+ readonly md: "8px";
607
+ readonly lg: "12px";
608
+ readonly full: "9999px";
609
+ };
610
+ readonly fontSizes: {
611
+ readonly sm: "14px";
612
+ readonly md: "16px";
613
+ readonly lg: "18px";
614
+ readonly xl: "24px";
615
+ readonly '2xl': "32px";
616
+ };
617
+ readonly fontWeights: {
618
+ readonly light: 300;
619
+ readonly regular: 400;
620
+ readonly medium: 500;
621
+ readonly semibold: 600;
622
+ readonly bold: 700;
623
+ };
624
+ readonly shadows: {
625
+ readonly card: "0px 6px 12px rgba(0, 0, 0, 0.16)";
626
+ readonly cardLg: "0px 6px 12px rgba(0, 0, 0, 0.40)";
627
+ };
628
+ };
629
+ type Theme = typeof theme;
630
+
631
+ export { BottomNav, type BottomNavItem, type BottomNavProps, type Brand, BrandLogo, type BrandLogoProps, BrandsSection, type BrandsSectionProps, CategoryNavbar, type CategoryNavbarProps, ContactForm, type ContactFormCountryCode, type ContactFormDestination, type ContactFormProps, type ContactFormValues, ContactSection, type ContactSectionProps, CtaBanner, type CtaBannerCta, type CtaBannerProps, DestinationCard, type DestinationCardProps, type DestinationItem, DestinationsSection, type DestinationsSectionProps, EventBanner, type EventBannerProps, EventCarousel, type EventCarouselItem, type EventCarouselProps, ExpandableValueCard, type ExpandableValueCardProps, ExploreCard, type ExploreCardProps, type ExploreItem, ExploreSection, type ExploreSectionProps, FaqExpandable, type FaqExpandableProps, type FaqItem, FaqSection, type FaqSectionProps, FeatureCard, type FeatureCardProps, Footer, type FooterColumn, type FooterContact, type FooterLink, type FooterProps, type FooterSocialLink, GalleryPhoto, type GalleryPhotoData, type GalleryPhotoProps, GallerySection, type GallerySectionProps, Hero, type HeroProps, type HeroReview, type HeroVariant, LocationCard, type LocationCardProps, type LocationItem, type MonthTab, MonthTabs, type MonthTabsProps, type NavCategory, type NavCategoryItem, type NavLink, Navbar, type NavbarProps, OfficesSection, type OfficesSectionProps, PackageCard, type PackageCardProps, type PackageItem, PackagesCarousel, type PackagesCarouselProps, SectionHeader, type SectionHeaderAlign, type SectionHeaderProps, TeamInfoCard, type TeamInfoCardProps, type TeamMember, TeamSection, type TeamSectionProps, type TeamSocialLink, TestimonialCard, type TestimonialCardProps, type TestimonialItem, TestimonialsCarousel, type TestimonialsCarouselProps, TextSection, type TextSectionAlign, type TextSectionProps, type Theme, TripCategoryCard, type TripCategoryCardProps, type TripsCategoryItem, TripsCategorySection, type TripsCategorySectionCta, type TripsCategorySectionProps, type ValueItem, ValuesSection, type ValuesSectionProps, type Warrior, WarriorCard, type WarriorCardProps, WarriorsSection, type WarriorsSectionProps, type WhyChooseFeature, WhyChooseSection, type WhyChooseSectionProps, theme };