import { ReactNode } from 'react'; export declare const DEFAULT_CLASS = "govuk-summary-list"; export interface SummaryListProps { classBlock?: string; classModifiers?: string | string[]; className?: string; isGroup?: boolean; noChangeAction?: boolean; noGroupAction?: boolean; showGroupAction?: boolean; rows: { pageId: string; fieldId: string; full_path?: string; key: string; value?: ReactNode; action?: { page?: string; label?: string; aria_suffix?: string; onAction?: Function; }; }[]; } /** Renders a list of key-value pairs, most commonly on the **Check your answers** screen, and optionally display action links. */ declare const SummaryList: ({ rows, noChangeAction, noGroupAction, isGroup, classBlock, classModifiers, className, showGroupAction, ...attrs }: SummaryListProps) => import("react/jsx-runtime").JSX.Element; export default SummaryList;