import type { LexiconPlugin } from "../../../lexicon.js"; /** * Scaffold tool definition for MCP */ export declare const scaffoldTool: { name: string; description: string; inputSchema: { type: "object"; properties: { pattern: { type: string; description: string; }; lexicon: { type: string; description: string; }; template: { type: string; description: string; }; }; required: string[]; }; }; /** * Create a scaffold handler with access to loaded plugins */ export declare function createScaffoldHandler(plugins: LexiconPlugin[]): (params: Record) => Promise; //# sourceMappingURL=scaffold.d.ts.map