You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
680 B
19 lines
680 B
import * as React from 'react';
|
|
import { FormInstance } from './interface';
|
|
import Field from './Field';
|
|
import List from './List';
|
|
import useForm from './useForm';
|
|
import { FormProps } from './Form';
|
|
import { FormProvider } from './FormContext';
|
|
declare const InternalForm: React.ForwardRefExoticComponent<FormProps & React.RefAttributes<FormInstance>>;
|
|
declare type InternalForm = typeof InternalForm;
|
|
interface RefForm extends InternalForm {
|
|
FormProvider: typeof FormProvider;
|
|
Field: typeof Field;
|
|
List: typeof List;
|
|
useForm: typeof useForm;
|
|
}
|
|
declare const RefForm: RefForm;
|
|
export { FormInstance, Field, List, useForm, FormProvider };
|
|
export default RefForm;
|