igloo-d2c-components 1.0.51 → 1.0.52-non-prod

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 (33) hide show
  1. package/dist/cjs/index.js +154 -46
  2. package/dist/esm/index.js +151 -48
  3. package/dist/types/components/Banner/Banner.d.ts +2 -2
  4. package/dist/types/components/Button/Button.d.ts +2 -1
  5. package/dist/types/components/Card/Card.d.ts +2 -2
  6. package/dist/types/components/DesktopHeaderMenuBar/styled.d.ts +3 -3
  7. package/dist/types/components/ErrorBoundary/ErrorBoundary.d.ts +58 -0
  8. package/dist/types/components/ErrorBoundary/index.d.ts +2 -0
  9. package/dist/types/components/Header/styled.d.ts +9 -6
  10. package/dist/types/components/InfoCallout/InfoCallout.d.ts +1 -1
  11. package/dist/types/components/ProductCard/ProductCard.d.ts +1 -1
  12. package/dist/types/components/ToggleGroup/ToggleGroup.d.ts +0 -4
  13. package/dist/types/index.d.ts +3 -0
  14. package/dist/types/storybook-components/Banner.stories.d.ts +9 -11
  15. package/dist/types/storybook-components/BillingToggle.stories.d.ts +5 -7
  16. package/dist/types/storybook-components/Button.stories.d.ts +7 -9
  17. package/dist/types/storybook-components/Card.stories.d.ts +7 -9
  18. package/dist/types/storybook-components/CheckoutProgress.stories.d.ts +18 -7
  19. package/dist/types/storybook-components/CoverageAmountSlider.stories.d.ts +9 -11
  20. package/dist/types/storybook-components/Footer.stories.d.ts +6 -8
  21. package/dist/types/storybook-components/Header.stories.d.ts +5 -7
  22. package/dist/types/storybook-components/HealthQuestionGroup.stories.d.ts +18 -7
  23. package/dist/types/storybook-components/InfoCallout.stories.d.ts +7 -9
  24. package/dist/types/storybook-components/NewHeader.stories.d.ts +12 -14
  25. package/dist/types/storybook-components/OptionButton.stories.d.ts +6 -8
  26. package/dist/types/storybook-components/ProductCard.stories.d.ts +6 -8
  27. package/dist/types/storybook-components/QuestionSection.stories.d.ts +7 -9
  28. package/dist/types/storybook-components/RecommendationsDrawer.stories.d.ts +3 -5
  29. package/dist/types/storybook-components/ToggleGroup.stories.d.ts +6 -8
  30. package/dist/types/utils/componentResolver.d.ts +43 -0
  31. package/package.json +30 -14
  32. package/dist/cjs/index.js.map +0 -1
  33. package/dist/esm/index.js.map +0 -1
@@ -2,7 +2,7 @@
2
2
  * Tenant-Aware Card Component
3
3
  * MUI Card with tenant theming support
4
4
  */
5
- /// <reference types="react" />
5
+ import React from 'react';
6
6
  import { CardProps as MuiCardProps } from '@mui/material';
7
7
  export interface CardProps extends Omit<MuiCardProps, 'title' | 'content' | 'action'> {
8
8
  /**
@@ -39,4 +39,4 @@ export interface CardProps extends Omit<MuiCardProps, 'title' | 'content' | 'act
39
39
  * />
40
40
  * ```
41
41
  */
42
- export declare function Card({ title, headerAction, content, actions, tenantAccent, sx, children, ...props }: CardProps): import("react/jsx-runtime").JSX.Element;
42
+ export declare const Card: React.NamedExoticComponent<CardProps>;
@@ -88,9 +88,9 @@ export declare const MenuItemText: import("@emotion/styled").StyledComponent<imp
88
88
  * Dropdown arrow icon
89
89
  * Size: 24px, color: #13131B
90
90
  */
91
- export declare const DropdownIcon: import("@emotion/styled").StyledComponent<any, {}, {
92
- ref?: import("react").Ref<any> | undefined;
93
- }>;
91
+ export declare const DropdownIcon: import("@emotion/styled").StyledComponent<import("@mui/material").SvgIconOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
92
+ ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
93
+ }, "fontSize" | "children" | "style" | "className" | "classes" | "sx" | "color" | "shapeRendering" | "viewBox" | "htmlColor" | "inheritViewBox" | "titleAccess"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
94
94
  /**
95
95
  * Right section containing menu items and CTA button
96
96
  * Gap: 32px between menu items (per Figma node 3506:35611)
@@ -0,0 +1,58 @@
1
+ /**
2
+ * Error Boundary Component
3
+ * Provides error resilience for React components
4
+ */
5
+ import React, { Component, ErrorInfo, ReactNode } from 'react';
6
+ export interface ErrorBoundaryProps {
7
+ /**
8
+ * Child components to wrap
9
+ */
10
+ children: ReactNode;
11
+ /**
12
+ * Fallback UI to display on error
13
+ */
14
+ fallback?: ReactNode;
15
+ /**
16
+ * Callback fired when an error is caught
17
+ */
18
+ onError?: (error: Error, errorInfo: ErrorInfo) => void;
19
+ /**
20
+ * Component name for debugging
21
+ */
22
+ componentName?: string;
23
+ }
24
+ interface ErrorBoundaryState {
25
+ hasError: boolean;
26
+ error: Error | null;
27
+ }
28
+ /**
29
+ * ErrorBoundary - Catches React errors in child component tree
30
+ *
31
+ * @example
32
+ * ```tsx
33
+ * <ErrorBoundary fallback={<div>Something went wrong</div>}>
34
+ * <MyComponent />
35
+ * </ErrorBoundary>
36
+ * ```
37
+ */
38
+ export declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryState> {
39
+ constructor(props: ErrorBoundaryProps);
40
+ static getDerivedStateFromError(error: Error): ErrorBoundaryState;
41
+ componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
42
+ render(): ReactNode;
43
+ }
44
+ /**
45
+ * Higher-Order Component that wraps a component with an ErrorBoundary
46
+ *
47
+ * @param Component - Component to wrap
48
+ * @param fallback - Optional custom fallback UI
49
+ * @returns Wrapped component with error boundary
50
+ *
51
+ * @example
52
+ * ```tsx
53
+ * const SafeButton = withErrorBoundary(Button, <div>Button failed to render</div>);
54
+ * <SafeButton {...props} />
55
+ * ```
56
+ */
57
+ export declare function withErrorBoundary<P extends object>(Component: React.ComponentType<P>, fallback?: ReactNode): React.ComponentType<P>;
58
+ export {};
@@ -0,0 +1,2 @@
1
+ export { ErrorBoundary, withErrorBoundary } from './ErrorBoundary';
2
+ export type { ErrorBoundaryProps } from './ErrorBoundary';
@@ -39,15 +39,18 @@ export declare const ImageProductIcon: import("@emotion/styled").StyledComponent
39
39
  export declare const StyledMenuItemDesktop: import("@emotion/styled").StyledComponent<import("@mui/material").MenuItemOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
40
40
  ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
41
41
  }, "children" | "style" | "className" | "classes" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "autoFocus" | "dense" | "selected" | "disableGutters" | "divider"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
42
- export declare const StyledCloseIcon: import("@emotion/styled").StyledComponent<any, {}, {
43
- ref?: import("react").Ref<any> | undefined;
44
- }>;
42
+ export declare const StyledCloseIcon: import("@emotion/styled").StyledComponent<import("@mui/material").SvgIconOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
43
+ ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
44
+ }, "fontSize" | "children" | "style" | "className" | "classes" | "sx" | "color" | "shapeRendering" | "viewBox" | "htmlColor" | "inheritViewBox" | "titleAccess"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
45
45
  export declare const StyledAvatarUserIcon: import("@emotion/styled").StyledComponent<import("@mui/material").AvatarOwnProps & import("@mui/material").AvatarSlotsAndSlotProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
46
46
  ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
47
47
  }, "children" | "style" | "className" | "classes" | "sx" | "variant" | "sizes" | "alt" | "src" | "srcSet" | "slots" | "slotProps" | "imgProps"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
48
- export declare const StyledMenuIcon: import("@emotion/styled").StyledComponent<any, {}, {
49
- ref?: import("react").Ref<any> | undefined;
50
- }>;
48
+ export declare const StyledMenuIcon: import("@emotion/styled").StyledComponent<import("@mui/material").SvgIconOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
49
+ ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
50
+ }, "fontSize" | "children" | "style" | "className" | "classes" | "sx" | "color" | "shapeRendering" | "viewBox" | "htmlColor" | "inheritViewBox" | "titleAccess"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
51
+ ispartnershippagemobileview: boolean;
52
+ scrolled: boolean;
53
+ }, {}, {}>;
51
54
  export declare const StyledDrawer: import("@emotion/styled").StyledComponent<import("@mui/material").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
52
55
  export declare const DivLogoWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
53
56
  export declare const DivLogo: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -31,4 +31,4 @@ export interface InfoCalloutProps {
31
31
  * </InfoCallout>
32
32
  * ```
33
33
  */
34
- export declare function InfoCallout({ title, children, formatMessage, }: InfoCalloutProps): import("react/jsx-runtime").JSX.Element;
34
+ export declare const InfoCallout: React.NamedExoticComponent<InfoCalloutProps>;
@@ -41,4 +41,4 @@ export interface ProductCardProps {
41
41
  */
42
42
  showIndicator?: boolean;
43
43
  }
44
- export declare const ProductCard: React.FC<ProductCardProps>;
44
+ export declare const ProductCard: React.NamedExoticComponent<ProductCardProps>;
@@ -1,7 +1,3 @@
1
- /**
2
- * ToggleGroup Component
3
- * Toggle button group for selecting between options (e.g., Domestic/International)
4
- */
5
1
  export interface ToggleOption {
6
2
  value: string;
7
3
  label: string;
@@ -61,9 +61,12 @@ export { FAQAccordion } from './components/FAQAccordion';
61
61
  export type { FAQAccordionProps, FAQItem } from './components/FAQAccordion';
62
62
  export { BenefitsSummary } from './components/BenefitsSummary';
63
63
  export type { BenefitItem, BenefitsSummaryProps } from './components/BenefitsSummary';
64
+ export { ErrorBoundary, withErrorBoundary } from './components/ErrorBoundary';
65
+ export type { ErrorBoundaryProps } from './components/ErrorBoundary';
64
66
  export { getTenantAssetPath, getTenantLogoPath, useTenantAsset, useTenantFavicon, useTenantLogo } from './utils/assets';
65
67
  export { createThemeCSSVariables, getThemeColor, mergeTenantTheme } from './utils/theme';
66
68
  export { isValidExternalUrl, safeWindowOpen, sanitizeUrl } from './utils/security';
67
69
  export { getImageSrc, isStaticImageData } from './utils/image';
68
70
  export type { StaticImageData } from './utils/image';
71
+ export { resolveComponent, resolveReactComponent, resolveSvgIcon } from './utils/componentResolver';
69
72
  export * from './assets';
@@ -1,13 +1,11 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { Banner } from '../components/Banner';
3
- declare const _default: ComponentMeta<typeof Banner>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof Banner>;
6
- export declare const WithGradient: ComponentStory<typeof Banner>;
7
- export declare const WithAction: ComponentStory<typeof Banner>;
8
- export declare const ComplexAction: ComponentStory<typeof Banner>;
9
- export declare const LongContent: ComponentStory<typeof Banner>;
10
- export declare const WithAmmetLifeTheme: ComponentStory<typeof Banner>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
4
+ export declare const WithGradient: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
5
+ export declare const WithAction: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
6
+ export declare const ComplexAction: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
7
+ export declare const LongContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
8
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
11
9
  export declare const Variants: () => import("react/jsx-runtime").JSX.Element;
12
- export declare const MinimalContent: ComponentStory<typeof Banner>;
13
- export declare const NoDescription: ComponentStory<typeof Banner>;
10
+ export declare const MinimalContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
11
+ export declare const NoDescription: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Banner").BannerProps>;
@@ -1,9 +1,7 @@
1
- import { ComponentMeta, ComponentStory } from '@storybook/react';
2
- import { BillingToggle } from '../components/BillingToggle';
3
- declare const _default: ComponentMeta<typeof BillingToggle>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof BillingToggle>;
6
- export declare const AnnuallySelected: ComponentStory<typeof BillingToggle>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
4
+ export declare const AnnuallySelected: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
7
5
  export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
8
- export declare const WithCustomFormatMessage: ComponentStory<typeof BillingToggle>;
9
- export declare const WithAmmetLifeTheme: ComponentStory<typeof BillingToggle>;
6
+ export declare const WithCustomFormatMessage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
7
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/BillingToggle").BillingToggleProps>;
@@ -1,12 +1,10 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { Button } from '../components/Button';
3
- declare const _default: ComponentMeta<typeof Button>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof Button>;
6
- export declare const TenantColored: ComponentStory<typeof Button>;
7
- export declare const Outlined: ComponentStory<typeof Button>;
8
- export declare const Text: ComponentStory<typeof Button>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
4
+ export declare const TenantColored: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
5
+ export declare const Outlined: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
6
+ export declare const Text: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
9
7
  export declare const Sizes: () => import("react/jsx-runtime").JSX.Element;
10
8
  export declare const Variants: () => import("react/jsx-runtime").JSX.Element;
11
- export declare const WithAmmetLifeTheme: ComponentStory<typeof Button>;
12
- export declare const Disabled: ComponentStory<typeof Button>;
9
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
10
+ export declare const Disabled: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Button").ButtonProps>;
@@ -1,11 +1,9 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { Card } from '../components/Card';
3
- declare const _default: ComponentMeta<typeof Card>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof Card>;
6
- export declare const WithTenantAccent: ComponentStory<typeof Card>;
7
- export declare const WithActions: ComponentStory<typeof Card>;
8
- export declare const CompleteCard: ComponentStory<typeof Card>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
4
+ export declare const WithTenantAccent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
5
+ export declare const WithActions: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
6
+ export declare const CompleteCard: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
9
7
  export declare const ElevationVariants: () => import("react/jsx-runtime").JSX.Element;
10
- export declare const WithAmmetLifeTheme: ComponentStory<typeof Card>;
11
- export declare const LongContent: ComponentStory<typeof Card>;
8
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
9
+ export declare const LongContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Card").CardProps>;
@@ -1,9 +1,20 @@
1
1
  /// <reference types="react" />
2
- import { ComponentMeta, ComponentStory } from '@storybook/react';
3
- declare const _default: ComponentMeta<import("react").FC<import("../components/CheckoutProgress").CheckoutProgressProps>>;
2
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
3
+ children?: import("react").ReactNode;
4
+ }>;
4
5
  export default _default;
5
- export declare const Step1: ComponentStory<import("react").FC<import("../components/CheckoutProgress").CheckoutProgressProps>>;
6
- export declare const Step2: ComponentStory<import("react").FC<import("../components/CheckoutProgress").CheckoutProgressProps>>;
7
- export declare const Step3: ComponentStory<import("react").FC<import("../components/CheckoutProgress").CheckoutProgressProps>>;
8
- export declare const WithoutBackButton: ComponentStory<import("react").FC<import("../components/CheckoutProgress").CheckoutProgressProps>>;
9
- export declare const FiveSteps: ComponentStory<import("react").FC<import("../components/CheckoutProgress").CheckoutProgressProps>>;
6
+ export declare const Step1: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
7
+ children?: import("react").ReactNode;
8
+ }>;
9
+ export declare const Step2: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
10
+ children?: import("react").ReactNode;
11
+ }>;
12
+ export declare const Step3: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
13
+ children?: import("react").ReactNode;
14
+ }>;
15
+ export declare const WithoutBackButton: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
16
+ children?: import("react").ReactNode;
17
+ }>;
18
+ export declare const FiveSteps: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CheckoutProgress").CheckoutProgressProps & {
19
+ children?: import("react").ReactNode;
20
+ }>;
@@ -1,13 +1,11 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { CoverageAmountSlider } from '../components/CoverageAmountSlider';
3
- declare const _default: ComponentMeta<typeof CoverageAmountSlider>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof CoverageAmountSlider>;
6
- export declare const MidRange: ComponentStory<typeof CoverageAmountSlider>;
7
- export declare const Maximum: ComponentStory<typeof CoverageAmountSlider>;
8
- export declare const CustomSteps: ComponentStory<typeof CoverageAmountSlider>;
9
- export declare const CustomCurrency: ComponentStory<typeof CoverageAmountSlider>;
10
- export declare const LargeRange: ComponentStory<typeof CoverageAmountSlider>;
11
- export declare const SmallRange: ComponentStory<typeof CoverageAmountSlider>;
12
- export declare const WithAmmetLifeTheme: ComponentStory<typeof CoverageAmountSlider>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
4
+ export declare const MidRange: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
5
+ export declare const Maximum: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
6
+ export declare const CustomSteps: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
7
+ export declare const CustomCurrency: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
8
+ export declare const LargeRange: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
9
+ export declare const SmallRange: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
10
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/CoverageAmountSlider").CoverageAmountSliderProps>;
13
11
  export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
@@ -1,9 +1,7 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { Footer } from '../components/Footer';
3
- declare const _default: ComponentMeta<typeof Footer>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof Footer>;
6
- export declare const SimplifiedLayout: ComponentStory<typeof Footer>;
7
- export declare const MobileView: ComponentStory<typeof Footer>;
8
- export declare const WithPoweredBy: ComponentStory<typeof Footer>;
9
- export declare const WithAmmetLifeTheme: ComponentStory<typeof Footer>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
4
+ export declare const SimplifiedLayout: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
5
+ export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
6
+ export declare const WithPoweredBy: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
7
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Footer").FooterProps>;
@@ -1,8 +1,6 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { Header } from '../components/Header';
3
- declare const _default: ComponentMeta<typeof Header>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof Header>;
6
- export declare const WithUser: ComponentStory<typeof Header>;
7
- export declare const MobileView: ComponentStory<typeof Header>;
8
- export declare const WithAmmetLifeTheme: ComponentStory<typeof Header>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
4
+ export declare const WithUser: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
5
+ export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
6
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/Header").HeaderProps>;
@@ -1,9 +1,20 @@
1
1
  /// <reference types="react" />
2
- import { ComponentMeta, ComponentStory } from '@storybook/react';
3
- declare const _default: ComponentMeta<import("react").FC<import("../components/HealthQuestionGroup").HealthQuestionGroupProps>>;
2
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
3
+ children?: import("react").ReactNode;
4
+ }>;
4
5
  export default _default;
5
- export declare const Default: ComponentStory<import("react").FC<import("../components/HealthQuestionGroup").HealthQuestionGroupProps>>;
6
- export declare const WithYesSelected: ComponentStory<import("react").FC<import("../components/HealthQuestionGroup").HealthQuestionGroupProps>>;
7
- export declare const WithError: ComponentStory<import("react").FC<import("../components/HealthQuestionGroup").HealthQuestionGroupProps>>;
8
- export declare const PregnancyQuestion: ComponentStory<import("react").FC<import("../components/HealthQuestionGroup").HealthQuestionGroupProps>>;
9
- export declare const MultilineQuestion: ComponentStory<import("react").FC<import("../components/HealthQuestionGroup").HealthQuestionGroupProps>>;
6
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
7
+ children?: import("react").ReactNode;
8
+ }>;
9
+ export declare const WithYesSelected: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
10
+ children?: import("react").ReactNode;
11
+ }>;
12
+ export declare const WithError: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
13
+ children?: import("react").ReactNode;
14
+ }>;
15
+ export declare const PregnancyQuestion: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
16
+ children?: import("react").ReactNode;
17
+ }>;
18
+ export declare const MultilineQuestion: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/HealthQuestionGroup").HealthQuestionGroupProps & {
19
+ children?: import("react").ReactNode;
20
+ }>;
@@ -1,10 +1,8 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { InfoCallout } from '../components/InfoCallout';
3
- declare const _default: ComponentMeta<typeof InfoCallout>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof InfoCallout>;
6
- export declare const CustomTitle: ComponentStory<typeof InfoCallout>;
7
- export declare const LongContent: ComponentStory<typeof InfoCallout>;
8
- export declare const ShortContent: ComponentStory<typeof InfoCallout>;
9
- export declare const WithCustomFormatMessage: ComponentStory<typeof InfoCallout>;
10
- export declare const WithAmmetLifeTheme: ComponentStory<typeof InfoCallout>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
4
+ export declare const CustomTitle: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
5
+ export declare const LongContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
6
+ export declare const ShortContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
7
+ export declare const WithCustomFormatMessage: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
8
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/InfoCallout").InfoCalloutProps>;
@@ -2,50 +2,48 @@
2
2
  * NewHeader Storybook Stories
3
3
  * Interactive documentation and testing for the NewHeader component
4
4
  */
5
- import { ComponentMeta, ComponentStory } from '@storybook/react';
6
- import { NewHeader } from '../components/NewHeader';
7
- declare const _default: ComponentMeta<typeof NewHeader>;
5
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
8
6
  export default _default;
9
7
  /**
10
8
  * Default story - Basic header with Igloo branding
11
9
  */
12
- export declare const Default: ComponentStory<typeof NewHeader>;
10
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
13
11
  /**
14
12
  * Authenticated User story
15
13
  */
16
- export declare const AuthenticatedUser: ComponentStory<typeof NewHeader>;
14
+ export declare const AuthenticatedUser: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
17
15
  /**
18
16
  * Mobile View story
19
17
  */
20
- export declare const MobileView: ComponentStory<typeof NewHeader>;
18
+ export declare const MobileView: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
21
19
  /**
22
20
  * AmMetLife Tenant story
23
21
  */
24
- export declare const AmMetLifeTenant: ComponentStory<typeof NewHeader>;
22
+ export declare const AmMetLifeTenant: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
25
23
  /**
26
24
  * Minimal story - No navigation links
27
25
  */
28
- export declare const MinimalHeader: ComponentStory<typeof NewHeader>;
26
+ export declare const MinimalHeader: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
29
27
  /**
30
28
  * Custom Drawer Content story
31
29
  */
32
- export declare const CustomDrawerContent: ComponentStory<typeof NewHeader>;
30
+ export declare const CustomDrawerContent: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
33
31
  /**
34
32
  * Many Menu Items story - Testing overflow
35
33
  */
36
- export declare const ManyMenuItems: ComponentStory<typeof NewHeader>;
34
+ export declare const ManyMenuItems: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
37
35
  /**
38
36
  * Without Logo story - Edge case testing
39
37
  */
40
- export declare const WithoutLogo: ComponentStory<typeof NewHeader>;
38
+ export declare const WithoutLogo: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
41
39
  /**
42
40
  * Internationalization story
43
41
  */
44
- export declare const WithInternationalization: ComponentStory<typeof NewHeader>;
42
+ export declare const WithInternationalization: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
45
43
  /**
46
44
  * Interactive Demo story
47
45
  */
48
- export declare const InteractiveDemo: ComponentStory<typeof NewHeader>;
46
+ export declare const InteractiveDemo: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
49
47
  /**
50
48
  * All Tenants Comparison
51
49
  */
@@ -75,4 +73,4 @@ export declare const ResponsiveDemo: {
75
73
  /**
76
74
  * Kitchen Sink story - All features
77
75
  */
78
- export declare const KitchenSink: ComponentStory<typeof NewHeader>;
76
+ export declare const KitchenSink: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/NewHeader").NewHeaderProps>;
@@ -1,12 +1,10 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { OptionButton } from '../components/OptionButton';
3
- declare const _default: ComponentMeta<typeof OptionButton>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof OptionButton>;
6
- export declare const Selected: ComponentStory<typeof OptionButton>;
7
- export declare const WithIcon: ComponentStory<typeof OptionButton>;
8
- export declare const Disabled: ComponentStory<typeof OptionButton>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
4
+ export declare const Selected: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
5
+ export declare const WithIcon: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
6
+ export declare const Disabled: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
9
7
  export declare const Sizes: () => import("react/jsx-runtime").JSX.Element;
10
8
  export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
11
9
  export declare const MultipleOptions: () => import("react/jsx-runtime").JSX.Element;
12
- export declare const WithAmmetLifeTheme: ComponentStory<typeof OptionButton>;
10
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/OptionButton").OptionButtonProps>;
@@ -1,9 +1,7 @@
1
- /// <reference types="react" />
2
- import { ComponentMeta, ComponentStory } from '@storybook/react';
3
- declare const _default: ComponentMeta<import("react").FC<import("../components/ProductCard").ProductCardProps>>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<import("react").FC<import("../components/ProductCard").ProductCardProps>>;
6
- export declare const WithLogo: ComponentStory<import("react").FC<import("../components/ProductCard").ProductCardProps>>;
7
- export declare const WithoutIndicator: ComponentStory<import("react").FC<import("../components/ProductCard").ProductCardProps>>;
8
- export declare const AnnualBilling: ComponentStory<import("react").FC<import("../components/ProductCard").ProductCardProps>>;
9
- export declare const NoPlan: ComponentStory<import("react").FC<import("../components/ProductCard").ProductCardProps>>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
4
+ export declare const WithLogo: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
5
+ export declare const WithoutIndicator: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
6
+ export declare const AnnualBilling: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
7
+ export declare const NoPlan: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ProductCard").ProductCardProps>;
@@ -1,11 +1,9 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { QuestionSection } from '../components/QuestionSection';
3
- declare const _default: ComponentMeta<typeof QuestionSection>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof QuestionSection>;
6
- export declare const WithSelection: ComponentStory<typeof QuestionSection>;
7
- export declare const WithoutNumber: ComponentStory<typeof QuestionSection>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
4
+ export declare const WithSelection: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
5
+ export declare const WithoutNumber: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
8
6
  export declare const MultipleSelection: () => import("react/jsx-runtime").JSX.Element;
9
- export declare const WithCustomRenderer: ComponentStory<typeof QuestionSection>;
10
- export declare const LongQuestion: ComponentStory<typeof QuestionSection>;
11
- export declare const WithAmmetLifeTheme: ComponentStory<typeof QuestionSection>;
7
+ export declare const WithCustomRenderer: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
8
+ export declare const LongQuestion: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
9
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/QuestionSection").QuestionSectionProps>;
@@ -2,11 +2,9 @@
2
2
  * RecommendationsDrawer Storybook Stories
3
3
  * Interactive testing for recommendations drawer and form components
4
4
  */
5
- import { ComponentMeta, ComponentStory } from '@storybook/react';
6
- import { RecommendationsDrawer } from '../components/RecommendationsDrawer';
7
- declare const _default: ComponentMeta<typeof RecommendationsDrawer>;
5
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/RecommendationsDrawer").RecommendationsDrawerProps>;
8
6
  export default _default;
9
- export declare const Default: ComponentStory<typeof RecommendationsDrawer>;
7
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/RecommendationsDrawer").RecommendationsDrawerProps>;
10
8
  export declare const CompleteQuestionnaire: {
11
9
  (): import("react/jsx-runtime").JSX.Element;
12
10
  parameters: {
@@ -33,4 +31,4 @@ export declare const TravelInsuranceExample: {
33
31
  };
34
32
  };
35
33
  };
36
- export declare const MobileViewport: ComponentStory<typeof RecommendationsDrawer>;
34
+ export declare const MobileViewport: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/RecommendationsDrawer").RecommendationsDrawerProps>;
@@ -1,10 +1,8 @@
1
- import { ComponentStory, ComponentMeta } from '@storybook/react';
2
- import { ToggleGroup } from '../components/ToggleGroup';
3
- declare const _default: ComponentMeta<typeof ToggleGroup>;
1
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
4
2
  export default _default;
5
- export declare const Default: ComponentStory<typeof ToggleGroup>;
6
- export declare const ThreeOptions: ComponentStory<typeof ToggleGroup>;
7
- export declare const WithoutIcons: ComponentStory<typeof ToggleGroup>;
8
- export declare const WithImageIcons: ComponentStory<typeof ToggleGroup>;
3
+ export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
4
+ export declare const ThreeOptions: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
5
+ export declare const WithoutIcons: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
6
+ export declare const WithImageIcons: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;
9
7
  export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
10
- export declare const WithAmmetLifeTheme: ComponentStory<typeof ToggleGroup>;
8
+ export declare const WithAmmetLifeTheme: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, import("../components/ToggleGroup").ToggleGroupProps>;