import React from 'react';
import type { Path } from '../../types';
export type FieldBoundaryProviderProps = {
    showErrors?: boolean;
    onPathError?: (path: Path, error: Error) => void;
    children: React.ReactNode;
};
export default function FieldBoundaryProvider(props: FieldBoundaryProviderProps): import("react/jsx-runtime").JSX.Element;
