import React, { PropsWithChildren } from 'react'; import { LinkProps } from '../Link'; import { HeadingProps } from '../Heading'; import type { BaseProps } from '../component-helpers'; export type SectionIntroStackedProps = React.HTMLAttributes & BaseProps & PropsWithChildren; type SectionIntroStackedHeadingProps = BaseProps & HeadingProps; type SectionIntroStackedLinkProps = LinkProps & BaseProps; type SectionIntroStackedItemsProps = BaseProps; export type SectionIntroStackedItemProps = BaseProps; export declare const SectionIntroStacked: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes> & { Heading: React.ForwardRefExoticComponent, "ref"> & 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; }; export {};