/** Platform-neutral Mastermind artifact intents. */ import { mcpCommand as renderMcpCommand } from './renderers/mcp.js'; import type { ArtifactIntent, InstallScope, PlatformAdapter } from './types.js'; export { platformInstruction } from './renderers/instructions.js'; export interface CoreRenderOptions { scope: InstallScope; enableHooks?: boolean; os?: NodeJS.Platform; } export declare const mcpCommand: typeof renderMcpCommand; /** * Produce only artifacts that the evidence-gated registry permits. Individual * renderers may add richer platform-specific data, but cannot turn fallback or * discovery-only capabilities into files. */ export declare function renderCoreArtifacts(adapter: PlatformAdapter, options: CoreRenderOptions): { intents: ArtifactIntent[]; diagnostics: string[]; }; //# sourceMappingURL=core.d.ts.map