import { ContentReplacementConfig } from '../types'; /** * Apply content replacement rules to an in-memory string (pure function). * Used during check comparison to apply the same transformations before hashing, * so replaced files are not falsely reported as modified. * * @param content The file content as a string. * @param replacements List of ContentReplacementConfig to apply. * @returns Transformed content string. */ export declare function applyContentReplacementsToBuffer(content: string, replacements: ContentReplacementConfig[]): string; /** * Apply content replacement rules to files on disk matching the given glob patterns. * Skips binary files. * * @param files List of absolute file paths to apply replacements to. * Pre-resolved by the caller via glob matching. * @param replacements List of ContentReplacementConfig to apply. */ export declare function applyContentReplacements(cwd: string, replacements: ContentReplacementConfig[]): Promise; //# sourceMappingURL=content-replacements.d.ts.map