import { default as React } from 'react'; import { FormProps as AntFormProps } from 'antd'; import { BaseComponentProps, DataSetConfig } from '../../types/common'; export interface AndSimpleFormProps extends Omit, BaseComponentProps, DataSetConfig { submitAction?: string; resetAction?: string; showSubmit?: boolean; showReset?: boolean; submitText?: string; resetText?: string; onFinish?: (values: any) => void; onReset?: () => void; } export declare const AndSimpleForm: React.FC; export default AndSimpleForm; //# sourceMappingURL=index.d.ts.map