/** * Normalize file paths to use forward slashes for cross-platform compatibility. * Windows uses backslashes, but this codebase standardizes on forward slashes. */ export declare const normalizePath: (path: string) => string; /** * Normalize all paths in an array. */ export declare const normalizePaths: (paths: string[]) => string[];