/**
 * 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 { Health, Layer } from '@mdf.js/core';
import { AdapterOptions } from '../../types';
import { Adapter } from '../Adapter';
export declare abstract class DummyAdapter extends Adapter implements Layer.App.Resource {
    /**
     * Create a new OpenC2 adapter for Dummy
     * @param adapterOptions - Adapter configuration options
     * @param type - component type
     */
    constructor(adapterOptions: AdapterOptions, type: 'producer' | 'consumer');
    /** Adapter health status */
    get status(): Health.Status;
    /** Component checks */
    get checks(): Health.Checks;
    /** Connect the OpenC2 Adapter to the underlayer transport system */
    start(): Promise<void>;
    /** Disconnect the OpenC2 Adapter from the underlayer transport system */
    stop(): Promise<void>;
    /** Disconnect the OpenC2 Adapter to the underlayer transport system */
    close(): Promise<void>;
}
//# sourceMappingURL=DummyAdapter.d.ts.map