Repository URL to install this package:
|
Version:
2.6.18 ▾
|
import React from 'react';
export interface FormElementProps extends React.ClassAttributes<any> {
setRef?: Function;
className?: string;
formId?: string;
handleSubmit?: Function;
[key: string]: any;
}
/**
* @todo @name innerRef > setRef
*/
export declare function FormElement<Props extends FormElementProps = FormElementProps>(props: Props): JSX.Element;
/**
* @todo - <Button> attom !!!!!!!!
*/
export declare const SubmitButton: (props: any) => JSX.Element;
export declare const CancelButton: (props: any) => JSX.Element;