import React from 'react'; import { SubmitHandler, UseFormProps } from 'react-hook-form'; export type FormProps = { children: React.ReactNode; onSubmit?: SubmitHandler; formOptions?: UseFormProps; resetValues?: any; onChange?: (handler: any) => void; }; export declare const Form: React.FunctionComponent;