import { IOptions, TExtendedApi } from './types';
export declare class MixApiManager {
    private _mixGlob;
    private _extendedApi?;
    constructor(options: IOptions);
    /**
     * A method that construct the extended api and return it
     * The extended api. Support and keep the same api.
     * With extra support to the Glob and OutConfig objects. That allow the glob processing.
     * If those objects are not passed then it will works just if MixGlob extension isn't applied
     * @returns TExtendedApi
     */
    getExtendedApi(): TExtendedApi;
}
