/**
 * 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 { ConsumerAdapter } from '@mdf.js/openc2-core';
import { AdapterOptions } from '../../types';
import { DummyAdapter } from './DummyAdapter';
export declare class DummyConsumerAdapter extends DummyAdapter implements ConsumerAdapter {
    /**
     * Create a new OpenC2 adapter for Dummy
     * @param adapterOptions - Adapter configuration options
     */
    constructor(adapterOptions: AdapterOptions);
    /**
     * Subscribe the incoming message handler to the underlayer transport system
     * @param handler - handler to be used
     * @returns
     */
    subscribe(handler: any): Promise<void>;
    /**
     * Unsubscribe the incoming message handler from the underlayer transport system
     * @param handler - handler to be used
     * @returns
     */
    unsubscribe(handler: any): Promise<void>;
}
//# sourceMappingURL=DummyConsumerAdapter.d.ts.map