export default login; declare namespace login { const name: string; const component: string; const fields: ({ component: string; name: string; label: string; required: boolean; fullWidth: boolean; type?: undefined; icon?: undefined; } | { component: string; name: string; label: string; type: string; icon: string; required?: undefined; fullWidth?: undefined; } | { component: string; name: string; label: string; icon: string; required?: undefined; fullWidth?: undefined; type?: undefined; })[]; const listeners: { event: string; actions: { component: string; }[]; }[]; }