/** * `check_architecture` MCP handler (spec-23). * * Two read-only modes over the opt-in architecture rules: * - pre-edit ({ directory, from, to }): "may a file under `from` import `to`?" — * a deterministic verdict + the governing rule + why, BEFORE the edit is made. * - scan ({ directory }): the full current-violations report. * * Fully inert when no rules are declared. Offline and deterministic. */ export interface CheckArchitectureArgs { directory: string; /** Pre-edit mode: the file that would gain the import (relative or absolute). */ from?: string; /** Pre-edit mode: the target file path or exported symbol being imported. */ to?: string; } export declare function handleCheckArchitecture(args: CheckArchitectureArgs): Promise; //# sourceMappingURL=architecture.d.ts.map