import React from 'react'; import { Forte } from '../core/Forte'; export interface IControl { value: T; onChange: (value: T | { target: { value: T; }; }) => void; } export interface IFieldProps { path: string; children: (control: IControl, error: Error, forte: Forte) => React.ReactNode; dependencies?: TDependencies; weak?: boolean; } export declare const Field: ({ path, children, dependencies, weak, }: IFieldProps) => JSX.Element; //# sourceMappingURL=Field.d.ts.map