Repository URL to install this package:
|
Version:
3.6.2 ▾
|
import * as React from 'react';
import { ValidationStrategy } from '../strategies';
import { FormProps } from './typings';
export declare class ObserverForm extends React.Component<FormProps> {
static defaultProps: {
renderForm: (props: any) => any;
renderButtonGroup: (props: any) => any;
};
static contextType: any;
context: ValidationStrategy;
handleSubmit: (event: any) => void;
render(): any;
}