import { type ConnectorSetupProvider } from "@cotal-ai/core"; /** Exported so a suite can grade the manifest that is actually written, not a second copy of it. */ export declare function marketplaceManifest(market: string): { name: string; description: string; owner: { name: string; }; plugins: { name: string; source: string; description?: string; }[]; }; /** * The write half of `writeMarketplace`, split out from the `plugin marketplace add` that follows it * so a suite can grade the bytes that reach disk without spawning `claude`. Returns the path so a * caller reads back the file this wrote rather than one it rebuilt from the same inputs. */ export declare function writeMarketplaceManifest(market: string): string; export declare const claudeSetupProvider: ConnectorSetupProvider; //# sourceMappingURL=setup.d.ts.map