/**
 * Read a file and return its text content
 * @param filePath Path to the file
 * @param maxFileSize Maximum file size in bytes
 * @returns File content as string, or null if the file is binary or exceeds size limit
 */
export declare const readRawFile: (filePath: string, maxFileSize: number) => Promise<string | null>;
//# sourceMappingURL=fileRead.d.ts.map