@tmlmobilidade/emails
Version:
8 lines (7 loc) • 312 B
TypeScript
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;