import Field from './Field'; declare class EmailInput extends Field { protected _getDefaults(): { format: string; readOnly: boolean; enabled: boolean; visible: boolean; label: { visible: boolean; richText: boolean; }; required: boolean; type: string | undefined; }; } export default EmailInput;