keystone-design-bootstrap 1.0.58 → 1.0.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/dist/blog-post-vWzW8yFb.d.ts +50 -0
  2. package/dist/contexts/index.d.ts +13 -0
  3. package/dist/design_system/elements/index.d.ts +383 -0
  4. package/dist/design_system/logo/keystone-logo.d.ts +6 -0
  5. package/dist/design_system/sections/index.d.ts +232 -0
  6. package/dist/design_system/sections/index.js +25 -37
  7. package/dist/design_system/sections/index.js.map +1 -1
  8. package/dist/index.d.ts +69 -0
  9. package/dist/index.js +25 -37
  10. package/dist/index.js.map +1 -1
  11. package/dist/lib/component-registry.d.ts +13 -0
  12. package/dist/lib/hooks/index.d.ts +83 -0
  13. package/dist/lib/server-api.d.ts +44 -0
  14. package/dist/package-CB1tENyG.d.ts +148 -0
  15. package/dist/photos-CmBdWiuZ.d.ts +27 -0
  16. package/dist/themes/index.d.ts +16 -0
  17. package/dist/types/index.d.ts +312 -0
  18. package/dist/utils/cx.d.ts +15 -0
  19. package/dist/utils/gradient-placeholder.d.ts +8 -0
  20. package/dist/utils/is-react-component.d.ts +21 -0
  21. package/dist/utils/markdown-toc.d.ts +14 -0
  22. package/dist/utils/phone-helpers.d.ts +24 -0
  23. package/dist/utils/photo-helpers.d.ts +38 -0
  24. package/dist/website-photos-Cl1YqAno.d.ts +21 -0
  25. package/package.json +1 -1
  26. package/src/design_system/portal/PortalPage.tsx +107 -91
  27. package/src/design_system/portal/PortalTabTracker.tsx +24 -0
  28. package/src/design_system/sections/contact-section-form.aman.tsx +2 -2
  29. package/src/design_system/sections/contact-section-form.balance.tsx +2 -2
  30. package/src/design_system/sections/contact-section-form.barelux.tsx +2 -2
  31. package/src/design_system/sections/contact-section-form.tsx +2 -2
  32. package/src/design_system/sections/header-navigation.aman.tsx +1 -4
  33. package/src/design_system/sections/header-navigation.balance.tsx +1 -4
  34. package/src/design_system/sections/header-navigation.barelux.tsx +1 -4
  35. package/src/design_system/sections/header-navigation.tsx +1 -8
  36. package/src/index.ts +1 -1
  37. package/src/lib/cta-urls.ts +15 -38
  38. package/src/next/layouts/root-layout.tsx +6 -7
  39. package/src/tracking/MetaPixelTracker.tsx +17 -12
  40. package/src/tracking/firePixelEvent.ts +26 -0
  41. package/src/tracking/index.ts +2 -6
  42. package/src/types/api/company-information.ts +2 -0
  43. package/src/tracking/BookingCtaTracker.tsx +0 -32
  44. package/src/tracking/ViewContentTracker.tsx +0 -21
  45. package/src/tracking/trackInitiateCheckout.ts +0 -16
  46. package/src/tracking/trackMetaLead.ts +0 -14
  47. package/src/tracking/trackViewContent.ts +0 -19
@@ -0,0 +1,50 @@
1
+ import { P as PhotoAttachment } from './photos-CmBdWiuZ.js';
2
+
3
+ interface BlogPost {
4
+ id: number;
5
+ title: string;
6
+ slug: string;
7
+ status: string;
8
+ published_at?: string;
9
+ excerpt_markdown?: string;
10
+ content_markdown: string;
11
+ featured: boolean;
12
+ seo_title?: string;
13
+ seo_description?: string;
14
+ seo_keywords?: string;
15
+ created_at: string;
16
+ updated_at: string;
17
+ photo_attachments?: PhotoAttachment[];
18
+ blog_post_authors?: BlogPostAuthor[];
19
+ blog_post_tags?: BlogPostTag[];
20
+ }
21
+ interface BlogPostParams {
22
+ status?: string;
23
+ author_id?: number;
24
+ tag_id?: number;
25
+ q?: string;
26
+ page?: number;
27
+ per_page?: number;
28
+ featured?: boolean;
29
+ }
30
+ type BlogPostResponse = BlogPost[];
31
+ interface BlogPostAuthor {
32
+ id: number;
33
+ name: string;
34
+ slug: string;
35
+ bio_markdown?: string;
36
+ active: boolean;
37
+ created_at: string;
38
+ updated_at: string;
39
+ photo_attachments?: PhotoAttachment[];
40
+ }
41
+ interface BlogPostTag {
42
+ id: number;
43
+ name: string;
44
+ slug: string;
45
+ description?: string;
46
+ created_at: string;
47
+ updated_at: string;
48
+ }
49
+
50
+ export type { BlogPost as B, BlogPostAuthor as a, BlogPostParams as b, BlogPostResponse as c, BlogPostTag as d };
@@ -0,0 +1,13 @@
1
+ import * as React$1 from 'react';
2
+ import { Theme } from '../themes/index.js';
3
+
4
+ interface ThemeContextValue {
5
+ theme: Theme;
6
+ }
7
+ declare function ThemeProvider({ theme, children }: {
8
+ theme: Theme;
9
+ children: React.ReactNode;
10
+ }): React$1.JSX.Element;
11
+ declare function useTheme(): ThemeContextValue;
12
+
13
+ export { ThemeProvider, useTheme };
@@ -0,0 +1,383 @@
1
+ import * as React from 'react';
2
+ import React__default, { ReactNode, Ref, ComponentType, HTMLAttributes, CSSProperties, FC, SVGProps, ComponentPropsWithRef, RefAttributes } from 'react';
3
+ import { TextFieldProps as TextFieldProps$1, ComboBoxProps as ComboBoxProps$1, ListBoxProps } from 'react-aria-components';
4
+ import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
5
+
6
+ interface InputBaseProps extends TextFieldProps {
7
+ /** Tooltip message on hover. */
8
+ tooltip?: string;
9
+ /**
10
+ * Input size.
11
+ * @default "sm"
12
+ */
13
+ size?: "sm" | "md";
14
+ /** Placeholder text. */
15
+ placeholder?: string;
16
+ /** Class name for the icon. */
17
+ iconClassName?: string;
18
+ /** Class name for the input. */
19
+ inputClassName?: string;
20
+ /** Class name for the input wrapper. */
21
+ wrapperClassName?: string;
22
+ /** Class name for the tooltip. */
23
+ tooltipClassName?: string;
24
+ /** Keyboard shortcut to display. */
25
+ shortcut?: string | boolean;
26
+ ref?: Ref<HTMLInputElement>;
27
+ groupRef?: Ref<HTMLDivElement>;
28
+ /** Icon component to display on the left side of the input. */
29
+ icon?: ComponentType<HTMLAttributes<HTMLOrSVGElement>>;
30
+ }
31
+ interface BaseProps {
32
+ /** Label text for the input */
33
+ label?: string;
34
+ /** Helper text displayed below the input */
35
+ hint?: ReactNode;
36
+ }
37
+ interface TextFieldProps extends BaseProps, TextFieldProps$1, Pick<InputBaseProps, "size" | "wrapperClassName" | "inputClassName" | "iconClassName" | "tooltipClassName"> {
38
+ ref?: Ref<HTMLDivElement>;
39
+ }
40
+
41
+ /**
42
+ * A2P 10DLC-compliant privacy + SMS consent checkbox. Use on any form that collects phone numbers.
43
+ * Same copy and markup used across contact and job application forms.
44
+ */
45
+ declare function PrivacyCheckbox$1(): React.JSX.Element;
46
+
47
+ type PaginationPage = {
48
+ /** The type of the pagination item. */
49
+ type: "page";
50
+ /** The value of the pagination item. */
51
+ value: number;
52
+ /** Whether the pagination item is the current page. */
53
+ isCurrent: boolean;
54
+ };
55
+ type PaginationEllipsisType = {
56
+ type: "ellipsis";
57
+ key: number;
58
+ };
59
+ type PaginationItemType = PaginationPage | PaginationEllipsisType;
60
+ interface PaginationContextType {
61
+ /** The pages of the pagination. */
62
+ pages: PaginationItemType[];
63
+ /** The current page of the pagination. */
64
+ currentPage: number;
65
+ /** The total number of pages. */
66
+ total: number;
67
+ /** The function to call when the page changes. */
68
+ onPageChange: (page: number) => void;
69
+ }
70
+ interface PaginationRootProps {
71
+ /** Number of sibling pages to show on each side of the current page */
72
+ siblingCount?: number;
73
+ /** Current active page number */
74
+ page: number;
75
+ /** Total number of pages */
76
+ total: number;
77
+ children: ReactNode;
78
+ /** The style of the pagination root. */
79
+ style?: CSSProperties;
80
+ /** The class name of the pagination root. */
81
+ className?: string;
82
+ /** Callback function that's called when the page changes with the new page number. */
83
+ onPageChange?: (page: number) => void;
84
+ }
85
+ interface TriggerRenderProps$1 {
86
+ isDisabled: boolean;
87
+ onClick: () => void;
88
+ }
89
+ interface TriggerProps$1 {
90
+ /** The children of the trigger. Can be a render prop or a valid element. */
91
+ children: ReactNode | ((props: TriggerRenderProps$1) => ReactNode);
92
+ /** The style of the trigger. */
93
+ style?: CSSProperties;
94
+ /** The class name of the trigger. */
95
+ className?: string | ((args: {
96
+ isDisabled: boolean;
97
+ }) => string);
98
+ /** If true, the child element will be cloned and passed down the prop of the trigger. */
99
+ asChild?: boolean;
100
+ /** The direction of the trigger. */
101
+ direction: "prev" | "next";
102
+ /** The aria label of the trigger. */
103
+ ariaLabel?: string;
104
+ }
105
+ interface PaginationItemRenderProps {
106
+ isSelected: boolean;
107
+ onClick: () => void;
108
+ value: number;
109
+ "aria-current"?: "page";
110
+ "aria-label"?: string;
111
+ }
112
+ interface PaginationItemProps {
113
+ /** The value of the pagination item. */
114
+ value: number;
115
+ /** Whether the pagination item is the current page. */
116
+ isCurrent: boolean;
117
+ /** The children of the pagination item. Can be a render prop or a valid element. */
118
+ children?: ReactNode | ((props: PaginationItemRenderProps) => ReactNode);
119
+ /** The style object of the pagination item. */
120
+ style?: CSSProperties;
121
+ /** The class name of the pagination item. */
122
+ className?: string | ((args: {
123
+ isSelected: boolean;
124
+ }) => string);
125
+ /** The aria label of the pagination item. */
126
+ ariaLabel?: string;
127
+ /** If true, the child element will be cloned and passed down the prop of the item. */
128
+ asChild?: boolean;
129
+ }
130
+ interface PaginationEllipsisProps {
131
+ key: number;
132
+ children?: ReactNode;
133
+ style?: CSSProperties;
134
+ className?: string | (() => string);
135
+ }
136
+ interface PaginationContextComponentProps {
137
+ children: (pagination: PaginationContextType) => ReactNode;
138
+ }
139
+ declare const Pagination: {
140
+ Root: ({ total, siblingCount, page, onPageChange, children, style, className }: PaginationRootProps) => React__default.JSX.Element;
141
+ PrevTrigger: FC<Omit<TriggerProps$1, "direction">>;
142
+ NextTrigger: FC<Omit<TriggerProps$1, "direction">>;
143
+ Item: ({ value, isCurrent, children, style, className, ariaLabel, asChild }: PaginationItemProps) => React__default.JSX.Element;
144
+ Ellipsis: FC<PaginationEllipsisProps>;
145
+ Context: FC<PaginationContextComponentProps>;
146
+ };
147
+
148
+ declare const getStarProgress: (starPosition: number, rating: number, maxRating?: number) => number;
149
+ interface StarIconProps extends SVGProps<SVGSVGElement> {
150
+ /**
151
+ * The progress of the star icon. It should be a number between 0 and 100.
152
+ *
153
+ * @default 100
154
+ */
155
+ progress?: number;
156
+ }
157
+ declare const StarIcon: ({ progress, ...props }: StarIconProps) => React.JSX.Element;
158
+
159
+ declare const Wreath: (props: HTMLAttributes<HTMLOrSVGElement>) => React.JSX.Element;
160
+
161
+ interface SocialIconProps {
162
+ platform: string;
163
+ className?: string;
164
+ }
165
+ /** Renders the icon for a given platform (facebook, instagram, tiktok, etc.). */
166
+ declare function SocialIcon({ platform, className }: SocialIconProps): React__default.ReactNode;
167
+ /** Returns the icon element for a platform (for use in map/render). */
168
+ declare function getSocialIcon(platform: string, className?: string): React__default.ReactNode;
169
+
170
+ type CarouselApi = UseEmblaCarouselType[1];
171
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
172
+ type CarouselOptions = UseCarouselParameters[0];
173
+ type CarouselPlugin = UseCarouselParameters[1];
174
+ type CarouselProps = {
175
+ /** The options for the Embla carousel. */
176
+ opts?: CarouselOptions;
177
+ /** The plugins for the Embla carousel. */
178
+ plugins?: CarouselPlugin;
179
+ /** The orientation of the carousel. */
180
+ orientation?: "horizontal" | "vertical";
181
+ /** The function to set the API for the carousel. */
182
+ setApi?: (api: CarouselApi) => void;
183
+ };
184
+ type CarouselContextProps = CarouselProps & {
185
+ /** The ref of the carousel. */
186
+ carouselRef: ReturnType<typeof useEmblaCarousel>[0];
187
+ /** The API of the carousel. */
188
+ api: ReturnType<typeof useEmblaCarousel>[1];
189
+ /** The function to scroll the carousel to the previous slide. */
190
+ scrollPrev: () => void;
191
+ /** The function to scroll the carousel to the next slide. */
192
+ scrollNext: () => void;
193
+ /** Whether the carousel can scroll to the previous slide. */
194
+ canScrollPrev: boolean;
195
+ /** Whether the carousel can scroll to the next slide. */
196
+ canScrollNext: boolean;
197
+ /** The index of the selected slide. */
198
+ selectedIndex: number;
199
+ /** The scroll snaps of the carousel. */
200
+ scrollSnaps: number[];
201
+ };
202
+ declare const CarouselContext: React.Context<CarouselContextProps | null>;
203
+ declare const useCarousel: () => CarouselContextProps;
204
+ interface CarouselContentProps extends ComponentPropsWithRef<"div"> {
205
+ /** The class name of the content. */
206
+ className?: string;
207
+ /** Whether to hide the overflow. */
208
+ overflowHidden?: boolean;
209
+ }
210
+ interface TriggerRenderProps {
211
+ isDisabled: boolean;
212
+ onClick: () => void;
213
+ }
214
+ interface TriggerProps {
215
+ /** The ref of the trigger. */
216
+ ref?: Ref<HTMLButtonElement>;
217
+ /** If true, the child element will be cloned and passed down the prop of the trigger. */
218
+ asChild?: boolean;
219
+ /** The direction of the trigger. */
220
+ direction: "prev" | "next";
221
+ /** The children of the trigger. Can be a render prop or a valid element. */
222
+ children: ReactNode | ((props: TriggerRenderProps) => ReactNode);
223
+ /** The style of the trigger. */
224
+ style?: CSSProperties;
225
+ /** The class name of the trigger. */
226
+ className?: string | ((args: {
227
+ isDisabled: boolean;
228
+ }) => string);
229
+ }
230
+ interface CarouselIndicatorRenderProps {
231
+ isSelected: boolean;
232
+ onClick: () => void;
233
+ }
234
+ interface CarouselIndicatorProps {
235
+ /** The index of the indicator. */
236
+ index: number;
237
+ /** If true, the child element will be cloned and passed down the prop of the indicator. */
238
+ asChild?: boolean;
239
+ /** If true, the indicator will be selected. */
240
+ isSelected?: boolean;
241
+ /** The children of the indicator. Can be a render prop or a valid element. */
242
+ children?: ReactNode | ((props: CarouselIndicatorRenderProps) => ReactNode);
243
+ /** The style of the indicator. */
244
+ style?: CSSProperties;
245
+ /** The class name of the indicator. */
246
+ className?: string | ((args: {
247
+ isSelected: boolean;
248
+ }) => string);
249
+ }
250
+ interface CarouselIndicatorGroupProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
251
+ children: ReactNode | ((props: {
252
+ index: number;
253
+ }) => ReactNode);
254
+ className?: string;
255
+ }
256
+ declare const Carousel: {
257
+ Root: ({ orientation, opts, setApi, plugins, className, children, ...props }: ComponentPropsWithRef<"div"> & CarouselProps) => React.JSX.Element;
258
+ Content: ({ className, overflowHidden, ...props }: CarouselContentProps) => React.JSX.Element;
259
+ Item: ({ className, ...props }: ComponentPropsWithRef<"div">) => React.JSX.Element;
260
+ PrevTrigger: (props: Omit<TriggerProps, "direction">) => React.JSX.Element;
261
+ NextTrigger: (props: Omit<TriggerProps, "direction">) => React.JSX.Element;
262
+ IndicatorGroup: ({ children, ...props }: CarouselIndicatorGroupProps) => React.JSX.Element;
263
+ Indicator: ({ index, isSelected, children, asChild, className, style }: CarouselIndicatorProps) => React.JSX.Element;
264
+ };
265
+
266
+ interface CarouselSectionWrapperProps {
267
+ title: string;
268
+ subtitle?: string;
269
+ hasItems: boolean;
270
+ children: React__default.ReactNode;
271
+ emptyMessage?: string;
272
+ }
273
+ declare const CarouselSectionWrapper: ({ title, subtitle, hasItems, children, emptyMessage, }: CarouselSectionWrapperProps) => React__default.JSX.Element;
274
+
275
+ type SelectItemType = {
276
+ id: string;
277
+ label?: string;
278
+ avatarUrl?: string;
279
+ isDisabled?: boolean;
280
+ supportingText?: string;
281
+ icon?: FC | ReactNode;
282
+ };
283
+ interface CommonProps {
284
+ hint?: string;
285
+ label?: string;
286
+ tooltip?: string;
287
+ size?: "sm" | "md";
288
+ placeholder?: string;
289
+ }
290
+
291
+ interface ComboBoxProps extends Omit<ComboBoxProps$1<SelectItemType>, "children" | "items">, RefAttributes<HTMLDivElement>, CommonProps {
292
+ shortcut?: boolean;
293
+ items?: SelectItemType[];
294
+ popoverClassName?: string;
295
+ shortcutClassName?: string;
296
+ children: ListBoxProps<SelectItemType>["children"];
297
+ }
298
+ declare const ComboBox: ({ placeholder, shortcut, size, children, items, shortcutClassName, ...otherProps }: ComboBoxProps) => React.JSX.Element;
299
+
300
+ interface VideoModalProps {
301
+ isOpen: boolean;
302
+ onClose: () => void;
303
+ videoUrl: string;
304
+ }
305
+ declare function VideoModal({ isOpen, onClose, videoUrl }: VideoModalProps): React.JSX.Element | null;
306
+
307
+ interface VideoPlayButtonProps {
308
+ onClick: () => void;
309
+ className?: string;
310
+ }
311
+ declare function VideoPlayButton({ onClick, className }: VideoPlayButtonProps): React.JSX.Element;
312
+
313
+ interface ModalProps {
314
+ /** Whether the modal is open */
315
+ isOpen: boolean;
316
+ /** Called when the user requests close (button, Escape, or overlay click) */
317
+ onClose: () => void;
318
+ /** Optional title for the dialog (used for aria-labelledby) */
319
+ title?: string;
320
+ /** Optional id for the title element (must be set if title is set for a11y) */
321
+ titleId?: string;
322
+ /** Dialog content */
323
+ children: React__default.ReactNode;
324
+ /** Optional footer rendered below scrollable content (e.g. branding or action bars). */
325
+ footer?: React__default.ReactNode;
326
+ /**
327
+ * Hide the built-in header bar and close button. Use when the content provides its own
328
+ * title and close affordance (e.g. a form with its own header). Escape and overlay click
329
+ * still close the dialog.
330
+ */
331
+ hideHeader?: boolean;
332
+ /** Accessible name for the dialog when no visible title is rendered (i.e. when hideHeader is true). */
333
+ ariaLabel?: string;
334
+ /** Optional className for the overlay (backdrop) */
335
+ overlayClassName?: string;
336
+ /** Optional className for the dialog panel */
337
+ panelClassName?: string;
338
+ /** Optional max width class for the panel (default: max-w-md). Use max-w-lg, max-w-2xl, etc. */
339
+ maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl';
340
+ }
341
+ /**
342
+ * Shared modal (dialog) component. Escape to close, aria-modal, overlay click to close, scroll lock, focus return on close.
343
+ * Use for detail views, confirmations, and other overlay content. Renders in place (use a portal from the consumer if needed).
344
+ * When `hideHeader` is true, provide an `aria-label` via `panelClassName` or ensure children supply a visible heading.
345
+ */
346
+ declare function Modal({ isOpen, onClose, title, titleId, children, footer, hideHeader, ariaLabel, overlayClassName, panelClassName, maxWidth, }: ModalProps): React__default.JSX.Element | null;
347
+
348
+ declare const Button: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
349
+ declare const RoundButton: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
350
+ declare const ButtonGroup: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
351
+ declare const Input: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
352
+ declare const InputBase: {
353
+ ({ ref, tooltip, shortcut, groupRef, size, isInvalid, isDisabled, icon: Icon, placeholder, wrapperClassName, tooltipClassName, inputClassName, iconClassName, ...inputProps }: Omit<InputBaseProps, "label" | "hint" | "isRequired">): React__default.JSX.Element;
354
+ displayName: string;
355
+ };
356
+ declare const Textarea: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
357
+ declare const PrivacyCheckbox: typeof PrivacyCheckbox$1;
358
+ declare const Form: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
359
+ declare const FormContainer: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
360
+ declare const InputGroup: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
361
+ declare const Label: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
362
+ declare const HintText: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
363
+ declare const Select: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
364
+ declare const SelectItem: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
365
+ declare const NativeSelect: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
366
+ declare const PhotoWithFallback: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
367
+ declare const Badge: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
368
+ declare const BadgeWithDot: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
369
+ declare const BadgeGroup: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
370
+ declare const RatingStars: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
371
+ declare const RatingBadge: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
372
+ declare const Tooltip: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
373
+ declare const Avatar: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
374
+ declare const AvatarLabelGroup: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
375
+ declare const VerifiedTick: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
376
+ declare const Breadcrumb: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
377
+ declare const FeaturedIcon: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
378
+ declare const PaginationPageDefault: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
379
+ declare const PaginationPageMinimalCenter: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
380
+ declare const GoogleMap: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
381
+ declare const MarkdownRenderer: (props: Record<string, unknown>) => React__default.ReactElement<Record<string, unknown>, string | React__default.JSXElementConstructor<any>>;
382
+
383
+ export { Avatar, AvatarLabelGroup, Badge, BadgeGroup, BadgeWithDot, Breadcrumb, Button, ButtonGroup, Carousel, CarouselContext, CarouselSectionWrapper, ComboBox, FeaturedIcon, Form, FormContainer, GoogleMap, HintText, Input, InputBase, InputGroup, Label, MarkdownRenderer, Modal, type ModalProps, NativeSelect, Pagination, PaginationPageDefault, PaginationPageMinimalCenter, PhotoWithFallback, PrivacyCheckbox, RatingBadge, RatingStars, RoundButton, Select, SelectItem, SocialIcon, StarIcon, Textarea, Tooltip, VerifiedTick, VideoModal, VideoPlayButton, Wreath, getSocialIcon, getStarProgress, useCarousel };
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { HTMLAttributes } from 'react';
3
+
4
+ declare const KeystoneLogo: (props: HTMLAttributes<HTMLOrSVGElement>) => React.JSX.Element;
5
+
6
+ export { KeystoneLogo };