/** * Convert a PHP file path to its route URL. * Handles direct file-based routing (no framework). * api/upload.php → /api/upload * api/next_sign.php → /api/next_sign */ export declare function phpFileToRouteURL(filePath: string): string | null;