import type { LdapRequest } from '../../../types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type LdapHandlers = {
    getLdapConfiguration: PublicAPIEndpoint<LdapRequest.GetConfig>;
    updateLdapConfiguration: PublicAPIEndpoint<LdapRequest.UpdateConfig>;
    getLdapSync: PublicAPIEndpoint<LdapRequest.GetSync>;
    runLdapSync: PublicAPIEndpoint<LdapRequest.RunSync>;
};
declare const ldapHandlers: LdapHandlers;
export = ldapHandlers;
