/**
 * Converts a file path to use POSIX forward slashes.
 * On Windows, `path.relative()` and similar return backslashes;
 * this utility normalizes them.
 */
export declare function toPosixPath(filePath: string): string;
