import { Utils } from '@ukhomeoffice/cop-react-components'; import { ReactNode } from 'react'; interface SummaryListRowProps { classes: ReturnType; row: { key: string; required?: boolean; value?: ReactNode; action?: { page?: string; label?: string; aria_suffix?: string; onAction?: Function; }; }; showAction?: boolean; } declare const SummaryListRow: ({ row, classes, showAction }: SummaryListRowProps) => import("react/jsx-runtime").JSX.Element; export default SummaryListRow;