import React from 'react'; export declare type AcmCountCardSection = { id?: string; title: string; cards: AcmCountCardSectionCard[]; loading?: boolean; loadingAriaLabel?: string; }; export declare type AcmCountCardSectionCard = { id?: string; count: number; countClick?: () => void; title: string; description?: string | React.ReactNode; linkText?: string; onLinkClick?: () => void; isDanger?: boolean; }; export declare const AcmCountCardSection: (props: AcmCountCardSection) => JSX.Element;