import React from 'react'; import { Forte } from '../core/Forte'; import { IFormSchema, FormValueType } from '../core/Schema'; export interface IFormProps { forte?: Forte; schema?: T; children?: React.ReactNode; onSubmit?: (values: FormValueType, forte: Forte) => void; onSubmitFailed?: (errors: Error[], forte: Forte) => void; } export declare const Form: { > = IFormSchema>>({ forte, schema, children, onSubmit, onSubmitFailed, }: IFormProps): JSX.Element; _Forte: typeof Forte; }; //# sourceMappingURL=Form.d.ts.map