/**
 * Copyright 2024 Mytra Control S.L. All rights reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be found in the LICENSE file
 * or at https://opensource.org/licenses/MIT.
 */
import { SettingsManager } from '..';
import { CustomSettings } from '../../types';
/** Model class */
export declare class Model {
    private readonly manager;
    /**
     * Create an instance of model class
     * @param manager - manager instance
     */
    constructor(manager: SettingsManager);
    /** Return the presets configuration objects */
    presets(): Promise<Record<string, CustomSettings>>;
    /** Return the configuration object */
    config(): Promise<CustomSettings>;
    /** Return the readme object */
    readme(): Promise<string | undefined>;
}
//# sourceMappingURL=config.model.d.ts.map