export interface SuperpowersMeta { superpowers: { enhanced: boolean; configPatched: boolean; installPath: string; detectedAt: string; }; } export interface WriteMetaOptions { installPath: string; configPatched: boolean; } export declare function writeSuperpowersMeta(projectPath: string, options: WriteMetaOptions): Promise; export declare function readSuperpowersMeta(projectPath: string): Promise; //# sourceMappingURL=superpowers-meta.d.ts.map