import { Card as CardComponent, CardProps } from './Card'; import { Footer } from './Footer'; import { FunctionBadge, FunctionBadgeProps as FunctionBadgeComponentProps } from './FunctionBadge'; import { Header, HeaderProps as HeaderComponentProps } from './Header'; import { Image, ImageProps as ImageComponentProps } from './Image'; export declare const Card: typeof CardComponent & { Header: typeof Header; Image: typeof Image; Footer: typeof Footer; FunctionBadge: typeof FunctionBadge; }; export { type CardProps }; export declare namespace Card { type HeaderProps = HeaderComponentProps; type ImageProps = ImageComponentProps; type FooterActionProps = Footer.ActionProps; type FooterPromoProps = Footer.PromoProps; type FooterCallToActionProps = Footer.CallToActionProps; type FunctionBadgeProps = FunctionBadgeComponentProps; }