export interface ValidationSummaryProps {
    hasData?: boolean;
    isSuccessful: boolean;
    totalErrors?: number;
    totalWarnings?: number;
}
export declare function ValidationSummary({ hasData, isSuccessful, totalErrors, totalWarnings, }: ValidationSummaryProps): import("react/jsx-runtime").JSX.Element;
