export default signupEditor; declare namespace signupEditor { const name: string; const component: string; const preview: boolean; const fields: { component: string; name: string; label: string; required: boolean; out: boolean; }[]; const validators: { where: { 'fields.retypePassword.value': { $ne: string; }; }; error: { field: string; error: string; }; }[]; const label: string; const hideCancel: boolean; const storeWhere: null; const listeners: ({ event: string; actions: { component: string; name: string; value: { 'fields.username.out': boolean; 'fields.password.hidden': boolean; 'fields.password.out': boolean; 'fields.password.block': boolean; 'fields.roles.hidden': boolean; 'fields.save.label': string; 'fields.save.icon': string; }; }[]; } | { event: string; actions: { component: string; }[]; })[]; }