import { default as React } from 'react'; export interface ValidationSummaryProps { title?: string; errors?: Record; fieldLabels?: Record; focusFieldOnClick?: boolean; live?: 'off' | 'polite' | 'assertive'; className?: string; emptyContent?: React.ReactNode; } export default function ValidationSummary({ title, errors, fieldLabels, focusFieldOnClick, live, className, emptyContent }: ValidationSummaryProps): import("react/jsx-runtime").JSX.Element;