/**
 * Returns the current form value and onChange handler for the Form
 */
declare function useForm(): readonly [any, (nextFormValue: any) => void];
export default useForm;
