import { PingCommand } from './PingCommand.js';
import { GetTCDataCommand } from './GetTCDataCommand.js';
import { GetInAppTCDataCommand } from './GetInAppTCDataCommand.js';
import { GetVendorListCommand } from './GetVendorListCommand.js';
import { AddEventListenerCommand } from './AddEventListenerCommand.js';
import { RemoveEventListenerCommand } from './RemoveEventListenerCommand.js';
import { TCFCommand } from './TCFCommand.js';
export declare class CommandMap {
    static [TCFCommand.PING]: typeof PingCommand;
    static [TCFCommand.GET_TC_DATA]: typeof GetTCDataCommand;
    static [TCFCommand.GET_IN_APP_TC_DATA]: typeof GetInAppTCDataCommand;
    static [TCFCommand.GET_VENDOR_LIST]: typeof GetVendorListCommand;
    static [TCFCommand.ADD_EVENT_LISTENER]: typeof AddEventListenerCommand;
    static [TCFCommand.REMOVE_EVENT_LISTENER]: typeof RemoveEventListenerCommand;
}
