import type { Context, ReactElement } from 'react'; type WithErrorWrapperProps = { context: Context; children: ReactElement; componentName: string; parentComponent: 'Field'; }; declare function WithErrorWrapper({ context, componentName, children, parentComponent, }: WithErrorWrapperProps): ReactElement>; export default WithErrorWrapper; //# sourceMappingURL=WithErrorWrapper.d.ts.map