export declare function streamProcessFile(filePath: string, transformFn: (chunk: string) => string): Promise<void>;
export declare function fileContainsPattern(filePath: string, pattern: RegExp): Promise<boolean>;
