import React, { PropsWithChildren } from 'react'; import { LinkProps } from '../Link'; import { HeadingProps } from '../Heading'; import { TextProps } from '../Text'; import { IconProps } from '../Icon'; import type { BaseProps } from '../component-helpers'; export declare const SectionIntroStackedVariants: readonly ["default", "gridline"]; export type SectionIntroStackedVariant = (typeof SectionIntroStackedVariants)[number]; export type SectionIntroStackedProps = React.HTMLAttributes & BaseProps & PropsWithChildren & { variant?: SectionIntroStackedVariant; }; type SectionIntroStackedHeadingProps = BaseProps & HeadingProps; type SectionIntroStackedDescriptionProps = Omit & BaseProps & { as?: 'p'; children: React.ReactNode | React.ReactNode[]; }; type SectionIntroStackedLinkProps = LinkProps & BaseProps; type SectionIntroStackedItemsProps = BaseProps; type SectionIntroStackedItemIconProps = IconProps; type SectionIntroStackedItemDescriptionProps = Omit & BaseProps & { as?: 'p'; children: React.ReactNode | React.ReactNode[]; }; export type SectionIntroStackedItemProps = BaseProps; export declare const SectionIntroStacked: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes> & { Heading: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; Description: React.ForwardRefExoticComponent & React.RefAttributes>; Link: React.ForwardRefExoticComponent & React.RefAttributes>; Items: ({ animate, className, children, ...rest }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; Item: ({ className, children, ...rest }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; ItemIcon: ({ className, color, ...props }: SectionIntroStackedItemIconProps) => import("react/jsx-runtime").JSX.Element; ItemHeading: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; ItemDescription: React.ForwardRefExoticComponent & React.RefAttributes>; }; export {};