export declare function wrapWithMarkers(content: string): string; export declare function hasMarkerBlock(fileContent: string): boolean; export declare function replaceMarkerBlock(fileContent: string, newContent: string): string; export declare function removeMarkerBlock(fileContent: string): string; export declare function isCenvEncrypted(value: string): boolean; export interface ManagedJsonEntry { file: string; keys: Record; } export declare class ManagedJsonRegistry { private registryPath; constructor(projectRoot: string); load(): ManagedJsonEntry[]; save(entries: ManagedJsonEntry[]): void; register(file: string, jsonPath: string, keys: string[]): void; getEntries(file: string): ManagedJsonEntry | undefined; unregisterAll(): ManagedJsonEntry[]; remove(): void; } //# sourceMappingURL=markers.d.ts.map