import type { Framework } from './detector.js'; /** * Check if inspector is already injected */ export declare function isInspectorInjected(filePath: string): Promise; /** * Check if any source file already references the inspector package. * This catches custom wrappers such as a dev-only lazy DevInspector component. */ export declare function hasInspectorUsage(cwd: string): Promise; /** * Inject VibeTorch Inspector into file */ export declare function injectInspector(filePath: string, framework: Framework): Promise; /** * Remove VibeTorch Inspector from file */ export declare function removeInspector(filePath: string): Promise; //# sourceMappingURL=injector.d.ts.map