import { Configurer } from '../Core/index'; import { UserSearchConfig } from './UserdirTypes'; /**User directory service*/ export declare class UserdirConfigurer extends Configurer { /**Administrative API for elasticsearch index management. One type ('users') is defined. You can provide mappings for it.*/ /** * Configures the mappings * * Configures the global user account search index with the given mappings and settings. * The settings fields only supports a sub-set of ES settings : analysis * */ setMapping(body: UserSearchConfig): Promise; }