import * as React from 'react';
import { CommonProps } from '@alifd/next';
import './index.scss';
export interface OadpEntityFormProps extends CommonProps {
    value?: any;
    field?: any;
    size?: 'large' | 'medium' | 'small';
    labelAlign?: 'top' | 'left' | 'inset';
    labelTextAlign?: 'left' | 'right';
    inline?: boolean;
    fullWidth?: boolean;
    responsive?: boolean;
    isPreview?: boolean;
    useLabelForErrorMessage?: boolean;
    preferMarginToDisplayHelp?: boolean;
    colon?: boolean;
    disabled?: boolean;
    children?: any;
    style?: React.CSSProperties;
}
declare const OadpEntityForm: React.FC<OadpEntityFormProps>;
export default OadpEntityForm;
