import { ReactNode } from 'react'; interface SummaryCardValidationContextProviderProps { entryId: string; topLevelErrors?: object[]; clearTopLevelErrorsForCard: Function; children?: ReactNode; } declare const SummaryCardValidationContextProvider: ({ entryId, topLevelErrors, clearTopLevelErrorsForCard, children }: SummaryCardValidationContextProviderProps) => import("react/jsx-runtime").JSX.Element; export default SummaryCardValidationContextProvider;