export declare enum ResourceType {
    AUDIO_EFFECTS = "audio_effects",
    INSTRUMENTS = "instruments",
    PLUGINS = "plugins",
    DRUMS = "drums",
    SAMPLES = "samples",
    MIDI_EFFECTS = "midi_effects",
    SOUNDS = "sounds"
}
export declare function loadDevice(deviceId: string, trackId?: string): Promise<void>;
export declare function listResources(type: ResourceType): Promise<Record<string, any>>;
