/**
 * 对应html中的input type=hidden
 * 2019-09-07 15:26.
 *
 * @author WheelerLee https://github.com/WheelerLee
 * @copyright 2019
 */
import { FormItemProps } from './Base';
import BaseFormItem from './BaseFormItem';
export default class Hidden extends BaseFormItem<FormItemProps> {
    render(): null;
}
//# sourceMappingURL=Hidden.d.ts.map