Newer
Older
/* eslint-disable */
/* tslint:disable */
/**
* This is an autogenerated file created by the Stencil compiler.
* It contains typing information for all components that exist in this project.
*/
import {HTMLStencilElement, JSXBase} from '@stencil/core/internal';
import {
ButtonVariants,
GridAlignVariants,
GridColumns,
GridColumnsLg,
GridColumnsSm,
HeadingSectionVariants,
HeadingVarians,
ProcessFlowBoxStepStates,
ProcessFlowBoxVariants
import {ProcessFlowBoxValue} from './components/process/process';
export namespace Components {
interface ColorBox {}
interface HyAccordionContainer {
accordionid?: string;
}
interface HyAccordionItem {
accordiontitle?: string;
}
interface HyBadge {
variant: 'primary' | 'warn' | 'success' | 'disabled';
}
interface HyBanner {
scLabel?: string;
textDescription: string;
textTitle?: string;
url?: string;
urlTitle?: string;
}
/**
* Top margin to be added to all but first element. Amount of rem:s
*/
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
margin: number;
}
interface HyBox {
/**
* value for vertical alignment (align-items)
*/
align: string;
/**
* background color. Must use one of css variable names from color tokens
*/
bg?: string;
/**
* fixed height for the container, useful for extra spacing containers
*/
h?: number;
/**
* Value for horisontal alignment (justify-content)
*/
justify: string;
/**
* All sides padding value in rems. Responsive when given Comma separated values.
*/
p?: string;
/**
* Bottom padding in rems. Responsive when given Comma separated values.
*/
pb?: string;
/**
* Left padding in rems. Responsive when given Comma separated values.
*/
pl?: string;
/**
* Right padding in rems. Responsive when given Comma separated values.
*/
pr?: string;
/**
* Top padding in rems. Responsive when given Comma separated values.
*/
pt?: string;
/**
* Responsive width. Must be a comma separated string of percentage values for breakpoints. First item is the default value.
*/
width: string;
}
interface HyBoxContainer {
/**
* Should the container have a max width of 90rems
*/
maxWidth: boolean;
/**
* Should the items wrap to new rows.
*/
wrap: boolean;
}
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
interface HyButton {
/**
* Aria label for the element
*/
ariaLabel?: string;
/**
* Use this to programmatically disable the button, matches the native button functionality
*/
disabled: boolean;
/**
* Icon to use on the left side
*/
icon?: string;
/**
* Icon to use on the right side
*/
iconRight?: string;
/**
* Use only with url property. Sets the
*/
isExternal?: boolean;
/**
* Size (height) of the button. Normal: 44px, large: 48px
*/
size: 'normal' | 'large';
/**
* deprecated, use disabled boolean value
*/
state: 'enabled' | 'disabled';
/**
* Set this on if an anchor tag is required instead of a button.
*/
url?: string;
/**
* The element variant. Defaults to primary
*/
variant: ButtonVariants;
}
interface HyCtaLiftupImageText {
imageAlt: string;
imageUrl: string;
mainUrl?: string;
Ekaterina Kondareva
committed
mainUrl2?: string;
Ekaterina Kondareva
committed
mainUrlAriaLabel2?: string;
Ekaterina Kondareva
committed
mainUrlIsExternal2: boolean;
Ekaterina Kondareva
committed
mainUrlTitle2?: string;
textDescription: string;
textTitle?: string;
}
interface HyCtaLinkButton {
isExternal: boolean;
linkContent: string;
Ekaterina Kondareva
committed
scLabel?: string;
}
interface HyDocsContainer {}
interface HyGridContainer {}
interface HyGridItem {
columns: GridColumns;
columnslg: GridColumnsLg;
columnssm: GridColumnsSm;
contentalign: GridAlignVariants;
}
interface HyGridRow {}
interface HyHeading {
heading: HeadingVarians;
section: HeadingSectionVariants;
}
interface HyIcon {
fill: string;
icon: string;
size: number;
}
interface HyImage {
aspectRatioHeight: number;
aspectRatioWidth: number;
caption: string;
imageAlt: string;
imageUrl?: string;
}
interface HyIngress {}
interface HyLink {
isExternal: boolean;
linkContent: string;
Ekaterina Kondareva
committed
scLabel?: string;
url?: string;
variant: LinkVariants;
}
interface HyLinkBox {
imageAlt: string;
imageUrl: string;
isExternal: boolean;
Ekaterina Kondareva
committed
scLabel?: string;
textDescription: string;
textTitle?: string;
url?: string;
}
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
interface HyMenuItem {
ariaExpanded: boolean;
depth: number;
hasChildren: boolean;
inActiveTrail: boolean;
isActive: boolean;
isHeading: boolean;
label: string;
menuItemAlternative: boolean;
menuLinkId: string;
parentAsHeading: string;
parentExpanded: boolean;
url: string;
variant: MenuItemVariants;
}
interface HyMenuLevelContainer {
activeTrailTriggered: boolean;
depth: number;
headingItem: any;
menuLevel: number;
triggerItem: string;
}
interface HyMenuMobile {
open: boolean;
}
interface HyMenuMobileBreadcrumb {
bid: string;
isFirst: boolean;
label: string;
}
interface HyProcess {
dataItems: ProcessFlowBoxValue[] | string;
variant: ProcessFlowBoxVariants;
}
interface HyProcessFlowBox {
boxDescription: string;
boxNumber: string;
boxTitle: string;
intermediateStepTitle: string;
numberTerm: string;
stepState: ProcessFlowBoxStepStates;
variant: ProcessFlowBoxVariants;
}
/**
* justify-content property.
*/
/**
* justify-content property.
*/
/**
* Left margin to be added to adjacent items.
*/
}
interface HySectionContainer {}
interface HyStandaloneLink {
isEnabled: boolean;
isExternal: boolean;
linkContent: string;
Ekaterina Kondareva
committed
scLabel?: string;
interface HTMLColorBoxElement extends Components.ColorBox, HTMLStencilElement {}
var HTMLColorBoxElement: {
prototype: HTMLColorBoxElement;
new (): HTMLColorBoxElement;
};
interface HTMLHyAccordionContainerElement extends Components.HyAccordionContainer, HTMLStencilElement {}
var HTMLHyAccordionContainerElement: {
prototype: HTMLHyAccordionContainerElement;
new (): HTMLHyAccordionContainerElement;
};
interface HTMLHyAccordionItemElement extends Components.HyAccordionItem, HTMLStencilElement {}
var HTMLHyAccordionItemElement: {
prototype: HTMLHyAccordionItemElement;
new (): HTMLHyAccordionItemElement;
};
interface HTMLHyBadgeElement extends Components.HyBadge, HTMLStencilElement {}
var HTMLHyBadgeElement: {
prototype: HTMLHyBadgeElement;
new (): HTMLHyBadgeElement;
};
interface HTMLHyBannerElement extends Components.HyBanner, HTMLStencilElement {}
var HTMLHyBannerElement: {
prototype: HTMLHyBannerElement;
new (): HTMLHyBannerElement;
};
interface HTMLHyBaselineElement extends Components.HyBaseline, HTMLStencilElement {}
var HTMLHyBaselineElement: {
prototype: HTMLHyBaselineElement;
new (): HTMLHyBaselineElement;
};
interface HTMLHyBoxElement extends Components.HyBox, HTMLStencilElement {}
var HTMLHyBoxElement: {
prototype: HTMLHyBoxElement;
new (): HTMLHyBoxElement;
};
interface HTMLHyBoxContainerElement extends Components.HyBoxContainer, HTMLStencilElement {}
var HTMLHyBoxContainerElement: {
prototype: HTMLHyBoxContainerElement;
new (): HTMLHyBoxContainerElement;
};
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
interface HTMLHyButtonElement extends Components.HyButton, HTMLStencilElement {}
var HTMLHyButtonElement: {
prototype: HTMLHyButtonElement;
new (): HTMLHyButtonElement;
};
interface HTMLHyCtaLiftupImageTextElement extends Components.HyCtaLiftupImageText, HTMLStencilElement {}
var HTMLHyCtaLiftupImageTextElement: {
prototype: HTMLHyCtaLiftupImageTextElement;
new (): HTMLHyCtaLiftupImageTextElement;
};
interface HTMLHyCtaLinkButtonElement extends Components.HyCtaLinkButton, HTMLStencilElement {}
var HTMLHyCtaLinkButtonElement: {
prototype: HTMLHyCtaLinkButtonElement;
new (): HTMLHyCtaLinkButtonElement;
};
interface HTMLHyDocsContainerElement extends Components.HyDocsContainer, HTMLStencilElement {}
var HTMLHyDocsContainerElement: {
prototype: HTMLHyDocsContainerElement;
new (): HTMLHyDocsContainerElement;
};
interface HTMLHyGridContainerElement extends Components.HyGridContainer, HTMLStencilElement {}
var HTMLHyGridContainerElement: {
prototype: HTMLHyGridContainerElement;
new (): HTMLHyGridContainerElement;
};
interface HTMLHyGridItemElement extends Components.HyGridItem, HTMLStencilElement {}
var HTMLHyGridItemElement: {
prototype: HTMLHyGridItemElement;
new (): HTMLHyGridItemElement;
};
interface HTMLHyGridRowElement extends Components.HyGridRow, HTMLStencilElement {}
var HTMLHyGridRowElement: {
prototype: HTMLHyGridRowElement;
new (): HTMLHyGridRowElement;
};
interface HTMLHyHeadingElement extends Components.HyHeading, HTMLStencilElement {}
var HTMLHyHeadingElement: {
prototype: HTMLHyHeadingElement;
new (): HTMLHyHeadingElement;
};
interface HTMLHyIconElement extends Components.HyIcon, HTMLStencilElement {}
var HTMLHyIconElement: {
prototype: HTMLHyIconElement;
new (): HTMLHyIconElement;
};
interface HTMLHyImageElement extends Components.HyImage, HTMLStencilElement {}
var HTMLHyImageElement: {
prototype: HTMLHyImageElement;
new (): HTMLHyImageElement;
};
interface HTMLHyIngressElement extends Components.HyIngress, HTMLStencilElement {}
var HTMLHyIngressElement: {
prototype: HTMLHyIngressElement;
new (): HTMLHyIngressElement;
};
interface HTMLHyLinkElement extends Components.HyLink, HTMLStencilElement {}
var HTMLHyLinkElement: {
prototype: HTMLHyLinkElement;
new (): HTMLHyLinkElement;
};
interface HTMLHyLinkBoxElement extends Components.HyLinkBox, HTMLStencilElement {}
var HTMLHyLinkBoxElement: {
prototype: HTMLHyLinkBoxElement;
new (): HTMLHyLinkBoxElement;
};
interface HTMLHyMenuItemElement extends Components.HyMenuItem, HTMLStencilElement {}
var HTMLHyMenuItemElement: {
prototype: HTMLHyMenuItemElement;
new (): HTMLHyMenuItemElement;
};
interface HTMLHyMenuLevelContainerElement extends Components.HyMenuLevelContainer, HTMLStencilElement {}
var HTMLHyMenuLevelContainerElement: {
prototype: HTMLHyMenuLevelContainerElement;
new (): HTMLHyMenuLevelContainerElement;
};
interface HTMLHyMenuMobileElement extends Components.HyMenuMobile, HTMLStencilElement {}
var HTMLHyMenuMobileElement: {
prototype: HTMLHyMenuMobileElement;
new (): HTMLHyMenuMobileElement;
};
interface HTMLHyMenuMobileBreadcrumbElement extends Components.HyMenuMobileBreadcrumb, HTMLStencilElement {}
var HTMLHyMenuMobileBreadcrumbElement: {
prototype: HTMLHyMenuMobileBreadcrumbElement;
new (): HTMLHyMenuMobileBreadcrumbElement;
interface HTMLHyParagraphTextElement extends Components.HyParagraphText, HTMLStencilElement {}
var HTMLHyParagraphTextElement: {
prototype: HTMLHyParagraphTextElement;
new (): HTMLHyParagraphTextElement;
};
interface HTMLHyProcessElement extends Components.HyProcess, HTMLStencilElement {}
var HTMLHyProcessElement: {
prototype: HTMLHyProcessElement;
new (): HTMLHyProcessElement;
};
interface HTMLHyProcessFlowBoxElement extends Components.HyProcessFlowBox, HTMLStencilElement {}
var HTMLHyProcessFlowBoxElement: {
prototype: HTMLHyProcessFlowBoxElement;
new (): HTMLHyProcessFlowBoxElement;
};
interface HTMLHyRowElement extends Components.HyRow, HTMLStencilElement {}
var HTMLHyRowElement: {
prototype: HTMLHyRowElement;
new (): HTMLHyRowElement;
};
interface HTMLHySectionContainerElement extends Components.HySectionContainer, HTMLStencilElement {}
var HTMLHySectionContainerElement: {
prototype: HTMLHySectionContainerElement;
new (): HTMLHySectionContainerElement;
};
interface HTMLHyStandaloneLinkElement extends Components.HyStandaloneLink, HTMLStencilElement {}
var HTMLHyStandaloneLinkElement: {
prototype: HTMLHyStandaloneLinkElement;
new (): HTMLHyStandaloneLinkElement;
};
interface HTMLHyTinyTextElement extends Components.HyTinyText, HTMLStencilElement {}
var HTMLHyTinyTextElement: {
prototype: HTMLHyTinyTextElement;
new (): HTMLHyTinyTextElement;
};
interface HTMLElementTagNameMap {
'color-box': HTMLColorBoxElement;
'hy-accordion-container': HTMLHyAccordionContainerElement;
'hy-accordion-item': HTMLHyAccordionItemElement;
'hy-badge': HTMLHyBadgeElement;
'hy-box': HTMLHyBoxElement;
'hy-box-container': HTMLHyBoxContainerElement;
'hy-button': HTMLHyButtonElement;
'hy-cta-liftup-image-text': HTMLHyCtaLiftupImageTextElement;
'hy-cta-link-button': HTMLHyCtaLinkButtonElement;
'hy-docs-container': HTMLHyDocsContainerElement;
'hy-grid-container': HTMLHyGridContainerElement;
'hy-grid-item': HTMLHyGridItemElement;
'hy-grid-row': HTMLHyGridRowElement;
'hy-heading': HTMLHyHeadingElement;
'hy-icon': HTMLHyIconElement;
'hy-image': HTMLHyImageElement;
'hy-ingress': HTMLHyIngressElement;
'hy-link': HTMLHyLinkElement;
'hy-link-box': HTMLHyLinkBoxElement;
'hy-menu-item': HTMLHyMenuItemElement;
'hy-menu-level-container': HTMLHyMenuLevelContainerElement;
'hy-menu-mobile': HTMLHyMenuMobileElement;
'hy-menu-mobile-breadcrumb': HTMLHyMenuMobileBreadcrumbElement;
'hy-process': HTMLHyProcessElement;
'hy-process-flow-box': HTMLHyProcessFlowBoxElement;
'hy-row': HTMLHyRowElement;
'hy-section-container': HTMLHySectionContainerElement;
'hy-standalone-link': HTMLHyStandaloneLinkElement;
'hy-tiny-text': HTMLHyTinyTextElement;
}
}
declare namespace LocalJSX {
interface ColorBox {}
interface HyAccordionContainer {
accordionid?: string;
}
interface HyAccordionItem {
accordiontitle?: string;
}
interface HyBadge {
variant?: 'primary' | 'warn' | 'success' | 'disabled';
}
interface HyBanner {
scLabel?: string;
textDescription?: string;
textTitle?: string;
url?: string;
urlTitle?: string;
}
/**
* Top margin to be added to all but first element. Amount of rem:s
*/
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
margin?: number;
}
interface HyBox {
/**
* value for vertical alignment (align-items)
*/
align?: string;
/**
* background color. Must use one of css variable names from color tokens
*/
bg?: string;
/**
* fixed height for the container, useful for extra spacing containers
*/
h?: number;
/**
* Value for horisontal alignment (justify-content)
*/
justify?: string;
/**
* All sides padding value in rems. Responsive when given Comma separated values.
*/
p?: string;
/**
* Bottom padding in rems. Responsive when given Comma separated values.
*/
pb?: string;
/**
* Left padding in rems. Responsive when given Comma separated values.
*/
pl?: string;
/**
* Right padding in rems. Responsive when given Comma separated values.
*/
pr?: string;
/**
* Top padding in rems. Responsive when given Comma separated values.
*/
pt?: string;
/**
* Responsive width. Must be a comma separated string of percentage values for breakpoints. First item is the default value.
*/
width?: string;
}
interface HyBoxContainer {
/**
* Should the container have a max width of 90rems
*/
maxWidth?: boolean;
/**
* Should the items wrap to new rows.
*/
wrap?: boolean;
}
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
interface HyButton {
/**
* Aria label for the element
*/
ariaLabel?: string;
/**
* Use this to programmatically disable the button, matches the native button functionality
*/
disabled?: boolean;
/**
* Icon to use on the left side
*/
icon?: string;
/**
* Icon to use on the right side
*/
iconRight?: string;
/**
* Use only with url property. Sets the
*/
isExternal?: boolean;
/**
* Size (height) of the button. Normal: 44px, large: 48px
*/
size?: 'normal' | 'large';
/**
* deprecated, use disabled boolean value
*/
state?: 'enabled' | 'disabled';
/**
* Set this on if an anchor tag is required instead of a button.
*/
url?: string;
/**
* The element variant. Defaults to primary
*/
variant?: ButtonVariants;
}
interface HyCtaLiftupImageText {
imageAlt?: string;
imageUrl?: string;
mainUrl?: string;
Ekaterina Kondareva
committed
mainUrl2?: string;
Ekaterina Kondareva
committed
mainUrlAriaLabel2?: string;
Ekaterina Kondareva
committed
mainUrlIsExternal2?: boolean;
Ekaterina Kondareva
committed
mainUrlTitle2?: string;
textDescription?: string;
textTitle?: string;
}
interface HyCtaLinkButton {
isExternal?: boolean;
linkContent?: string;
Ekaterina Kondareva
committed
scLabel?: string;
}
interface HyDocsContainer {}
interface HyGridContainer {}
interface HyGridItem {
columns?: GridColumns;
columnslg?: GridColumnsLg;
columnssm?: GridColumnsSm;
contentalign?: GridAlignVariants;
}
interface HyGridRow {}
interface HyHeading {
heading?: HeadingVarians;
section?: HeadingSectionVariants;
}
interface HyIcon {
fill?: string;
icon?: string;
size?: number;
}
interface HyImage {
aspectRatioHeight?: number;
aspectRatioWidth?: number;
caption?: string;
imageAlt?: string;
imageUrl?: string;
}
interface HyIngress {}
interface HyLink {
isExternal?: boolean;
linkContent?: string;
Ekaterina Kondareva
committed
scLabel?: string;
url?: string;
variant?: LinkVariants;
}
interface HyLinkBox {
imageAlt?: string;
imageUrl?: string;
isExternal?: boolean;
Ekaterina Kondareva
committed
scLabel?: string;
textDescription?: string;
textTitle?: string;
url?: string;
}
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
interface HyMenuItem {
ariaExpanded?: boolean;
depth?: number;
hasChildren?: boolean;
inActiveTrail?: boolean;
isActive?: boolean;
isHeading?: boolean;
label?: string;
menuItemAlternative?: boolean;
menuLinkId?: string;
onAddBreadcrumb?: (event: CustomEvent<any>) => void;
onMenuContainerActiveTrail?: (event: CustomEvent<any>) => void;
onMenuContainerToggled?: (event: CustomEvent<any>) => void;
onRouteClicked?: (event: CustomEvent<any>) => void;
parentAsHeading?: string;
parentExpanded?: boolean;
url?: string;
variant?: MenuItemVariants;
}
interface HyMenuLevelContainer {
activeTrailTriggered?: boolean;
depth?: number;
headingItem?: any;
menuLevel?: number;
triggerItem?: string;
}
interface HyMenuMobile {
onMenuContainerToggled?: (event: CustomEvent<any>) => void;
open?: boolean;
}
interface HyMenuMobileBreadcrumb {
bid?: string;
isFirst?: boolean;
label?: string;
onRemoveBreadcrumb?: (event: CustomEvent<any>) => void;
}
interface HyProcess {
dataItems?: ProcessFlowBoxValue[] | string;
variant?: ProcessFlowBoxVariants;
}
interface HyProcessFlowBox {
boxDescription?: string;
boxNumber?: string;
boxTitle?: string;
intermediateStepTitle?: string;
numberTerm?: string;
stepState?: ProcessFlowBoxStepStates;
variant?: ProcessFlowBoxVariants;
}
/**
* justify-content property.
*/
/**
* justify-content property.
*/
/**
* Left margin to be added to adjacent items.
*/
}
interface HySectionContainer {}
interface HyStandaloneLink {
isEnabled?: boolean;
isExternal?: boolean;
linkContent?: string;
Ekaterina Kondareva
committed
scLabel?: string;
url?: string;
}
interface HyTinyText {}
interface IntrinsicElements {
'color-box': ColorBox;
'hy-accordion-container': HyAccordionContainer;
'hy-accordion-item': HyAccordionItem;
'hy-badge': HyBadge;
'hy-box': HyBox;
'hy-box-container': HyBoxContainer;
'hy-button': HyButton;
'hy-cta-liftup-image-text': HyCtaLiftupImageText;
'hy-cta-link-button': HyCtaLinkButton;
'hy-docs-container': HyDocsContainer;
'hy-grid-container': HyGridContainer;
'hy-grid-item': HyGridItem;
'hy-grid-row': HyGridRow;
'hy-heading': HyHeading;
'hy-icon': HyIcon;
'hy-image': HyImage;
'hy-ingress': HyIngress;
'hy-link': HyLink;
'hy-link-box': HyLinkBox;
'hy-menu-item': HyMenuItem;
'hy-menu-level-container': HyMenuLevelContainer;
'hy-menu-mobile': HyMenuMobile;
'hy-menu-mobile-breadcrumb': HyMenuMobileBreadcrumb;
'hy-process': HyProcess;
'hy-process-flow-box': HyProcessFlowBox;
'hy-row': HyRow;
'hy-section-container': HySectionContainer;
'hy-standalone-link': HyStandaloneLink;
'hy-tiny-text': HyTinyText;
}
export {LocalJSX as JSX};
declare module '@stencil/core' {
export namespace JSX {
interface IntrinsicElements {
'color-box': LocalJSX.ColorBox & JSXBase.HTMLAttributes<HTMLColorBoxElement>;
'hy-accordion-container': LocalJSX.HyAccordionContainer & JSXBase.HTMLAttributes<HTMLHyAccordionContainerElement>;
'hy-accordion-item': LocalJSX.HyAccordionItem & JSXBase.HTMLAttributes<HTMLHyAccordionItemElement>;
'hy-badge': LocalJSX.HyBadge & JSXBase.HTMLAttributes<HTMLHyBadgeElement>;
'hy-banner': LocalJSX.HyBanner & JSXBase.HTMLAttributes<HTMLHyBannerElement>;
'hy-baseline': LocalJSX.HyBaseline & JSXBase.HTMLAttributes<HTMLHyBaselineElement>;
'hy-box': LocalJSX.HyBox & JSXBase.HTMLAttributes<HTMLHyBoxElement>;
'hy-box-container': LocalJSX.HyBoxContainer & JSXBase.HTMLAttributes<HTMLHyBoxContainerElement>;
'hy-button': LocalJSX.HyButton & JSXBase.HTMLAttributes<HTMLHyButtonElement>;
'hy-cta-liftup-image-text': LocalJSX.HyCtaLiftupImageText &
JSXBase.HTMLAttributes<HTMLHyCtaLiftupImageTextElement>;
'hy-cta-link-button': LocalJSX.HyCtaLinkButton & JSXBase.HTMLAttributes<HTMLHyCtaLinkButtonElement>;
'hy-docs-container': LocalJSX.HyDocsContainer & JSXBase.HTMLAttributes<HTMLHyDocsContainerElement>;
'hy-grid-container': LocalJSX.HyGridContainer & JSXBase.HTMLAttributes<HTMLHyGridContainerElement>;
'hy-grid-item': LocalJSX.HyGridItem & JSXBase.HTMLAttributes<HTMLHyGridItemElement>;
'hy-grid-row': LocalJSX.HyGridRow & JSXBase.HTMLAttributes<HTMLHyGridRowElement>;
'hy-heading': LocalJSX.HyHeading & JSXBase.HTMLAttributes<HTMLHyHeadingElement>;
'hy-icon': LocalJSX.HyIcon & JSXBase.HTMLAttributes<HTMLHyIconElement>;
'hy-image': LocalJSX.HyImage & JSXBase.HTMLAttributes<HTMLHyImageElement>;
'hy-ingress': LocalJSX.HyIngress & JSXBase.HTMLAttributes<HTMLHyIngressElement>;
'hy-link': LocalJSX.HyLink & JSXBase.HTMLAttributes<HTMLHyLinkElement>;
'hy-link-box': LocalJSX.HyLinkBox & JSXBase.HTMLAttributes<HTMLHyLinkBoxElement>;
'hy-menu-item': LocalJSX.HyMenuItem & JSXBase.HTMLAttributes<HTMLHyMenuItemElement>;
'hy-menu-level-container': LocalJSX.HyMenuLevelContainer &
JSXBase.HTMLAttributes<HTMLHyMenuLevelContainerElement>;
'hy-menu-mobile': LocalJSX.HyMenuMobile & JSXBase.HTMLAttributes<HTMLHyMenuMobileElement>;
'hy-menu-mobile-breadcrumb': LocalJSX.HyMenuMobileBreadcrumb &
JSXBase.HTMLAttributes<HTMLHyMenuMobileBreadcrumbElement>;
'hy-paragraph-text': LocalJSX.HyParagraphText & JSXBase.HTMLAttributes<HTMLHyParagraphTextElement>;
'hy-process': LocalJSX.HyProcess & JSXBase.HTMLAttributes<HTMLHyProcessElement>;
'hy-process-flow-box': LocalJSX.HyProcessFlowBox & JSXBase.HTMLAttributes<HTMLHyProcessFlowBoxElement>;
'hy-row': LocalJSX.HyRow & JSXBase.HTMLAttributes<HTMLHyRowElement>;
'hy-section-container': LocalJSX.HySectionContainer & JSXBase.HTMLAttributes<HTMLHySectionContainerElement>;
'hy-standalone-link': LocalJSX.HyStandaloneLink & JSXBase.HTMLAttributes<HTMLHyStandaloneLinkElement>;
'hy-tiny-text': LocalJSX.HyTinyText & JSXBase.HTMLAttributes<HTMLHyTinyTextElement>;
}
}