export interface DiscoveryOptions { /** Package name prefix convention, such as '@xpert-ai/plugin-' or 'xpert-plugin-' */ prefix?: string; /** Specify manifest file path (JSON), takes precedence over prefix scanning */ manifestPath?: string; } export declare function discoverPlugins(cwd?: string, opts?: DiscoveryOptions): string[];