import { EventService } from '../../events/event.service'; import { LdapService } from './ldap.service.ee'; import { LdapConfiguration } from './types'; export declare class LdapController { private readonly ldapService; private readonly eventService; constructor(ldapService: LdapService, eventService: EventService); getConfig(): Promise; testConnection(): Promise; updateConfig(req: LdapConfiguration.Update): Promise; getLdapSync(req: LdapConfiguration.GetSync): Promise; syncLdap(req: LdapConfiguration.Sync): Promise; }