export type LdapSettingsType = { enabled: boolean; url: string; bindDn: string; bindCredentials: string; bindCredentialsSet?: boolean; searchBase: string; searchFilter: string; emailAttribute: string; usernameAttribute: string; }; export type LdapMessages = { userManagement: string; ldap: string; ldapSettings: string; ldapDescription: string; enableLdap: string; enableLdapDesc: string; serverUrl: string; bindDn: string; bindCredentials: string; bindCredentialsPlaceholder: string; searchBase: string; searchFilter: string; emailAttribute: string; usernameAttribute: string; save: string; saved: string; saveError: string; testConnection: string; testUsername: string; testPassword: string; testSuccess: string; testFailed: string; };