/**
 * herd
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * OpenAPI spec version: 0.220.0-SNAPSHOT
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { SearchIndexActivation } from '../model/searchIndexActivation';
import { SearchIndexActivationCreateRequest } from '../model/searchIndexActivationCreateRequest';
import { Configuration } from '../configuration';
export declare class SearchIndexActivationService {
    protected httpClient: HttpClient;
    protected basePath: string;
    defaultHeaders: HttpHeaders;
    configuration: Configuration;
    constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
    /**
     * @param consumes string[] mime-types
     * @return true: consumes contains 'multipart/form-data', false: otherwise
     */
    private canConsumeForm;
    /**
     * createSearchIndexActivation
     * Activates the search index of the specific type.
     * @param searchIndexActivationCreateRequest the information needed to activate a search index
     * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
     * @param reportProgress flag to report request and response progress.
     */
    searchIndexActivationCreateSearchIndexActivation(searchIndexActivationCreateRequest: SearchIndexActivationCreateRequest, observe?: 'body', reportProgress?: boolean): Observable<SearchIndexActivation>;
    searchIndexActivationCreateSearchIndexActivation(searchIndexActivationCreateRequest: SearchIndexActivationCreateRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<SearchIndexActivation>>;
    searchIndexActivationCreateSearchIndexActivation(searchIndexActivationCreateRequest: SearchIndexActivationCreateRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<SearchIndexActivation>>;
}
