import { Config } from "src/config.js";
export type DetectedPresetLibrary = {
    synthName: SynthNames;
    root: string;
    presets: string;
    userPresets: string;
};
declare const uheSynthNames: readonly ["ACE", "Bazille", "Diva", "Hive", "Repro-1", "Repro-5", "Zebra2", "ZebraHZ", "Zebralette3", "Zebra3", "TyrellN6", "Podolski", "TripleCheese"];
export type SynthNames = typeof uheSynthNames[number];
/**
 * Detects Preset Library locations
 */
export declare function detectPresetLibraryLocations(config: Config): DetectedPresetLibrary[];
export {};
