import React from 'react'; declare type AcmSummaryListProps = { title: string; actions?: React.ReactNode[]; rightAction?: React.ReactNode; list: SummarySectionProps[]; loading?: boolean; }; export declare const skeleton: (title: string) => JSX.Element; export declare function AcmSummaryList(props: AcmSummaryListProps): JSX.Element; declare type SummarySectionProps = { count: number; description: string; href?: string; isPrimary?: boolean; }; export {};