import { Settings } from '../../types/index.js'; /** * Preprocesses file content before upload. Returns the processed content, * or { skip: reason } if the file should be skipped. */ export declare function preprocessContent(content: string, filePath: string, fileType: string, settings: Settings): string | { skip: string; };