import { MmUIComponent } from './component' /** Form field component */ export declare class MmFormField extends MmUIComponent { label: string name: string field: string rules: any[] disabled: boolean readonly: boolean hasFeedback: boolean help: string required: boolean validateStatus: 'success' | 'warning' | 'error' | 'validating' extra: string }