// types/definePlugins.d.ts

/**
 * Defines a plugin map like { PLUGIN_NAME: "PLUGIN_NAME" }.
 * Can optionally load all plugin files from the filesystem.
 */
export function definePlugins(
  names?: string[],
  options?: {
    /** If true, load all plugin filenames from the pluginDir defined in package.json */
    useDirectory?: boolean;
  }
): Record<string, string>;
