UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

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