/**
 * Forum API
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 2.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
import { Configuration } from '../configuration';
import { RequestArgs, BaseAPI } from '../base';
/**
 * ChemontApi - axios parameter creator
 * @export
 */
export declare const ChemontApiAxiosParamCreator: (configuration?: Configuration) => {
    /**
     *
     * @param {string} query the user\&#39;s query
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    chemontFuzzyQueryGet: (query: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
    /**
     *
     * @param {string} idChemont idChemont
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    chemontMeshIdChemontGet: (idChemont: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
    /**
     *
     * @param {string} idMesh  idMesh
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    meshChemontIdMeshGet: (idMesh: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};
/**
 * ChemontApi - functional programming interface
 * @export
 */
export declare const ChemontApiFp: (configuration?: Configuration) => {
    /**
     *
     * @param {string} query the user\&#39;s query
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    chemontFuzzyQueryGet(query: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
    /**
     *
     * @param {string} idChemont idChemont
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    chemontMeshIdChemontGet(idChemont: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
    /**
     *
     * @param {string} idMesh  idMesh
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    meshChemontIdMeshGet(idMesh: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
};
/**
 * ChemontApi - factory interface
 * @export
 */
export declare const ChemontApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
    /**
     *
     * @param {string} query the user\&#39;s query
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    chemontFuzzyQueryGet(query: string, options?: any): AxiosPromise<any>;
    /**
     *
     * @param {string} idChemont idChemont
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    chemontMeshIdChemontGet(idChemont: string, options?: any): AxiosPromise<any>;
    /**
     *
     * @param {string} idMesh  idMesh
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    meshChemontIdMeshGet(idMesh: string, options?: any): AxiosPromise<any>;
};
/**
 * ChemontApi - interface
 * @export
 * @interface ChemontApi
 */
export interface ChemontApiInterface {
    /**
     *
     * @param {string} query the user\&#39;s query
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ChemontApiInterface
     */
    chemontFuzzyQueryGet(query: string, options?: AxiosRequestConfig): AxiosPromise<any>;
    /**
     *
     * @param {string} idChemont idChemont
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ChemontApiInterface
     */
    chemontMeshIdChemontGet(idChemont: string, options?: AxiosRequestConfig): AxiosPromise<any>;
    /**
     *
     * @param {string} idMesh  idMesh
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ChemontApiInterface
     */
    meshChemontIdMeshGet(idMesh: string, options?: AxiosRequestConfig): AxiosPromise<any>;
}
/**
 * ChemontApi - object-oriented interface
 * @export
 * @class ChemontApi
 * @extends {BaseAPI}
 */
export declare class ChemontApi extends BaseAPI implements ChemontApiInterface {
    /**
     *
     * @param {string} query the user\&#39;s query
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ChemontApi
     */
    chemontFuzzyQueryGet(query: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
    /**
     *
     * @param {string} idChemont idChemont
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ChemontApi
     */
    chemontMeshIdChemontGet(idChemont: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
    /**
     *
     * @param {string} idMesh  idMesh
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ChemontApi
     */
    meshChemontIdMeshGet(idMesh: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
}
